/*@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap");*/

:root {
    --vv-offset: 0px;
    --color-black: hsl(0, 0%, 10%);
    --color-white: hsl(0, 0%, 100%);
    --color-darken: hsl(0, 0%, 20%);
    --color-pink-100: hsl(336, 95%, 94%);
    --color-pink-200: hsl(338, 91%, 87%);
    --color-pink-300: hsl(339, 90%, 81%);
    --color-pink-400: hsl(339, 88%, 74%);
    --color-pink-500: hsl(339, 82%, 67%);
    --color-pink-600: hsl(339, 76%, 59%);
    --color-pink-700: hsl(339, 67%, 52%);
    --color-pink-800: hsl(339, 68%, 45%);
    --color-pink-900: hsl(339, 69%, 38%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --ikost-pink-bg: #fbefee;
    --ikost-pink-border: #f3d9d6;
    --ikost-green-bg: #ecfbf3;
    --ikost-green-border: #c9f0dc;
    --ikost-ring: #3b82f6;
    --brand: #1e40af;
    --brand-light: #eaf1ff;
    --cream: #e1aa2c;
    --cream-light: #fff3d7;
    --bn-black: #292929;
    --bn-white: #ffffff;
    --family-primary: "Nunito", sans-serif;
    --size-xxs: clamp(4px, 0.27vw, 4px);
    --size-xs: clamp(8px, 0.54vw, 8px);
    --size-s: clamp(10px, 0.68vw, 10px);
    --size-m: clamp(12px, 0.81vw, 12px);
    --size-l: clamp(12px, 0.95vw, 14px);
    --size-xl: clamp(14px, 1.08vw, 16px);
    --size-1xl: clamp(13px, 1.22vw, 18px);
    --size-2xl: clamp(14px, 1.35vw, 20px);
    --size-3xl: clamp(17px, 1.62vw, 24px);
    --size-4xl: clamp(21px, 2.03vw, 30px);
    --size-5xl: clamp(25px, 2.43vw, 36px);
    --size-6xl: clamp(34px, 3.24vw, 48px);
    --size-7xl: clamp(42px, 4.05vw, 60px);
    --size-8xl: clamp(50px, 4.86vw, 72px);
    --size-9xl: clamp(67px, 6.49vw, 96px);
}

@charset 'UTF-8';






* {
    font-weight: 400 !important;
}

body {
    color: black;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
}

.h2, h2 {
    font-size: 24px;
}

h1, h2, h3 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

#cc-main {
    background: transparent;
    color: var(--cc-primary-color);
    font-family: var(--cc-font-family);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.15;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    position: fixed;
    z-index: var(--cc-z-index)
}

    #cc-main :after, #cc-main :before, #cc-main a, #cc-main button, #cc-main div, #cc-main h2, #cc-main input, #cc-main p, #cc-main span {
        all: unset;
        box-sizing: border-box
    }

    #cc-main .pm__badge, #cc-main button {
        all: initial;
        box-sizing: border-box;
        color: unset;
        visibility: unset
    }

    #cc-main .pm__badge, #cc-main a, #cc-main button, #cc-main input {
        -webkit-appearance: none;
        appearance: none;
        cursor: pointer;
        font-family: inherit;
        font-size: 100%;
        line-height: normal;
        margin: 0;
        outline: revert;
        outline-offset: 2px;
        overflow: hidden
    }

    #cc-main table, #cc-main tbody, #cc-main td, #cc-main th, #cc-main thead, #cc-main tr {
        all: revert;
        color: inherit;
        font-family: inherit;
        font-size: inherit;
        font-weight: inherit
    }

:root {
    --cc-font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    --cc-modal-border-radius: .5rem;
    --cc-btn-border-radius: .4rem;
    --cc-modal-transition-duration: .25s;
    --cc-link-color: var(--cc-btn-primary-bg);
    --cc-modal-margin: 1rem;
    --cc-z-index: 2147483647;
    --cc-bg: #fff;
    --cc-primary-color: #2c2f31;
    --cc-secondary-color: #5e6266;
    --cc-btn-primary-bg: #30363c;
    --cc-btn-primary-color: #fff;
    --cc-btn-primary-border-color: var(--cc-btn-primary-bg);
    --cc-btn-primary-hover-bg: #000;
    --cc-btn-primary-hover-color: #fff;
    --cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
    --cc-btn-secondary-bg: #eaeff2;
    --cc-btn-secondary-color: var(--cc-primary-color);
    --cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
    --cc-btn-secondary-hover-bg: #d4dae0;
    --cc-btn-secondary-hover-color: #000;
    --cc-btn-secondary-hover-border-color: #d4dae0;
    --cc-separator-border-color: #f0f4f7;
    --cc-toggle-on-bg: var(--cc-btn-primary-bg);
    --cc-toggle-off-bg: #667481;
    --cc-toggle-on-knob-bg: #fff;
    --cc-toggle-off-knob-bg: var(--cc-toggle-on-knob-bg);
    --cc-toggle-enabled-icon-color: var(--cc-bg);
    --cc-toggle-disabled-icon-color: var(--cc-bg);
    --cc-toggle-readonly-bg: #d5dee2;
    --cc-toggle-readonly-knob-bg: #fff;
    --cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
    --cc-section-category-border: var(--cc-cookie-category-block-bg);
    --cc-cookie-category-block-bg: #f0f4f7;
    --cc-cookie-category-block-border: #f0f4f7;
    --cc-cookie-category-block-hover-bg: #e9eff4;
    --cc-cookie-category-block-hover-border: #e9eff4;
    --cc-cookie-category-expanded-block-bg: transparent;
    --cc-cookie-category-expanded-block-hover-bg: #dee4e9;
    --cc-overlay-bg: rgba(0,0,0,.65);
    --cc-webkit-scrollbar-bg: var(--cc-section-category-border);
    --cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
    --cc-footer-bg: var(--cc-btn-secondary-bg);
    --cc-footer-color: var(--cc-secondary-color);
    --cc-footer-border-color: #e4eaed;
    --cc-pm-toggle-border-radius: 4em
}

#cc-main.cc--rtl {
    direction: rtl
}

#cc-main .cm__title, #cc-main a, #cc-main b, #cc-main em, #cc-main strong {
    font-weight: 600
}

#cc-main button > span {
    pointer-events: none
}

#cc-main .cc__link, #cc-main a {
    background-image: linear-gradient(currentColor,currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    font-weight: 600;
    position: relative;
    transition: background-size .25s,color .25s ease
}

    #cc-main .cc__link:hover, #cc-main a:hover {
        background-size: 100% 1px;
        color: var(--cc-primary-color)
    }

#cc-main .cc__link {
    color: var(--cc-link-color)
}

#cc-main .cm__desc, #cc-main .pm__body {
    overscroll-behavior: auto contain;
    scrollbar-width: thin
}

@media screen and (min-width:640px) {
    #cc-main ::-webkit-scrollbar, #cc-main ::-webkit-scrollbar-thumb, #cc-main ::-webkit-scrollbar-track {
        all: revert
    }

    #cc-main ::-webkit-scrollbar-thumb {
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background: var(--cc-toggle-readonly-bg);
        border: .25rem solid var(--cc-bg);
        border-radius: 1rem
    }

        #cc-main ::-webkit-scrollbar-thumb:hover {
            background: var(--cc-toggle-off-bg)
        }

    #cc-main ::-webkit-scrollbar {
        background: transparent;
        width: 12px
    }
}

html.disable--interaction.show--consent, html.disable--interaction.show--consent body {
    height: auto !important;
    overflow: hidden !important
}

@media (prefers-reduced-motion) {
    #cc-main {
        --cc-modal-transition-duration: 0s
    }
}

.cc--darkmode {
    --cc-bg: #161a1c;
    --cc-primary-color: #ebf3f6;
    --cc-secondary-color: #aebbc5;
    --cc-btn-primary-bg: #c2d0e0;
    --cc-btn-primary-color: var(--cc-bg);
    --cc-btn-primary-border-color: var(--cc-btn-primary-bg);
    --cc-btn-primary-hover-bg: #98a7b6;
    --cc-btn-primary-hover-color: #000;
    --cc-btn-primary-hover-border-color: var(--cc-btn-primary-hover-bg);
    --cc-btn-secondary-bg: #242c31;
    --cc-btn-secondary-color: var(--cc-primary-color);
    --cc-btn-secondary-border-color: var(--cc-btn-secondary-bg);
    --cc-btn-secondary-hover-bg: #353d43;
    --cc-btn-secondary-hover-color: #fff;
    --cc-btn-secondary-hover-border-color: var(--cc-btn-secondary-hover-bg);
    --cc-separator-border-color: #222a30;
    --cc-toggle-on-bg: var(--cc-btn-primary-bg);
    --cc-toggle-off-bg: #525f6b;
    --cc-toggle-on-knob-bg: var(--cc-btn-primary-color);
    --cc-toggle-off-knob-bg: var(--cc-btn-primary-color);
    --cc-toggle-enabled-icon-color: var(--cc-btn-primary-color);
    --cc-toggle-disabled-icon-color: var(--cc-btn-primary-color);
    --cc-toggle-readonly-bg: #343e45;
    --cc-toggle-readonly-knob-bg: #5f6b72;
    --cc-toggle-readonly-knob-icon-color: var(--cc-toggle-readonly-bg);
    --cc-section-category-border: #1e2428;
    --cc-cookie-category-block-bg: #1e2428;
    --cc-cookie-category-block-border: var(--cc-section-category-border);
    --cc-cookie-category-block-hover-bg: #242c31;
    --cc-cookie-category-block-hover-border: #232a2f;
    --cc-cookie-category-expanded-block-bg: transparent;
    --cc-cookie-category-expanded-block-hover-bg: var(--cc-toggle-readonly-bg);
    --cc-overlay-bg: rgba(0,0,0,.65);
    --cc-webkit-scrollbar-bg: var(--cc-section-category-border);
    --cc-webkit-scrollbar-hover-bg: var(--cc-btn-primary-hover-bg);
    --cc-footer-bg: #0c0e0f;
    --cc-footer-color: var(--cc-secondary-color);
    --cc-footer-border-color: #060809
}

    .cc--darkmode #cc-main {
        color-scheme: dark
    }

#cc-main .cm {
    background: var(--cc-bg);
    border-radius: var(--cc-modal-border-radius);
    box-shadow: 0 .625em 1.875em rgba(0,0,2,.3);
    display: flex;
    flex-direction: column;
    max-width: 24rem;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    transform: translateY(1.6em);
    visibility: hidden;
    z-index: 1
}

#cc-main .cm--top {
    top: var(--cc-modal-margin)
}

#cc-main .cm--middle {
    top: 50%;
    transform: translateY(calc(-50% + 1.6em))
}

#cc-main .cm--bottom {
    bottom: var(--cc-modal-margin)
}

#cc-main .cm--center {
    left: var(--cc-modal-margin);
    margin: 0 auto;
    right: var(--cc-modal-margin);
    width: unset
}

#cc-main .cm--left {
    left: var(--cc-modal-margin);
    margin-right: var(--cc-modal-margin)
}

#cc-main .cm--right {
    margin-left: var(--cc-modal-margin);
    right: var(--cc-modal-margin)
}

#cc-main .cm__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative
}

#cc-main .cm__btns, #cc-main .cm__links {
    padding: 1rem 1.3rem;
    width: unset
}

#cc-main .cm__texts {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0 0
}

#cc-main .cm__desc, #cc-main .cm__title {
    padding: 0 1.3rem
}

#cc-main .cm__title {
    font-size: 1.05em
}

    #cc-main .cm__title + .cm__desc {
        margin-top: 1.1em
    }

#cc-main .cm__desc {
    color: var(--cc-secondary-color);
    font-size: 12px;
    line-height: 1.2;
    max-height: 30vh;
    overflow-x: visible;
    overflow-y: auto;
    padding-bottom: 1em
}

#cc-main .cm__btns {
    border-top: 1px solid var(--cc-separator-border-color);
    display: flex;
    flex-direction: column;
    justify-content: center
}

#cc-main .cm__btn-group {
    display: grid;
    grid-auto-columns: minmax(0,1fr)
}

    #cc-main .cm__btn + .cm__btn, #cc-main .cm__btn-group + .cm__btn-group {
        margin-top: .375rem
    }

#cc-main .cm--flip .cm__btn + .cm__btn, #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
    margin-bottom: .375rem;
    margin-top: 0
}

#cc-main .cm--inline .cm__btn + .cm__btn {
    margin-left: .375rem;
    margin-top: 0
}

#cc-main .cm--inline.cm--flip .cm__btn + .cm__btn {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: .375rem
}

#cc-main .cm--inline.cm--flip .cm__btn-group + .cm__btn-group {
    margin-bottom: .375rem;
    margin-right: 0
}

#cc-main .cm--wide .cm__btn + .cm__btn, #cc-main .cm--wide .cm__btn-group + .cm__btn-group {
    margin-left: .375rem;
    margin-top: 0
}

#cc-main .cm--wide.cm--flip .cm__btn + .cm__btn, #cc-main .cm--wide.cm--flip .cm__btn-group + .cm__btn-group {
    margin-bottom: 0;
    margin-right: .375rem
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn-group--uneven, #cc-main .cm--wide .cm__btn-group--uneven {
    display: flex;
    flex: 1;
    justify-content: space-between
}

#cc-main .cm--bar:not(.cm--inline).cm--flip .cm__btn-group--uneven, #cc-main .cm--wide.cm--flip .cm__btn-group--uneven {
    flex-direction: row-reverse
}

#cc-main .cm__btn {
    background: var(--cc-btn-primary-bg);
    border: 1px solid var(--cc-btn-primary-border-color);
    border-radius: var(--cc-btn-border-radius);
    color: var(--cc-btn-primary-color);
    font-size: .82em;
    font-weight: 600;
    min-height: 42px;
    padding: .5em 1em;
    text-align: center
}

    #cc-main .cm__btn:hover {
        background: var(--cc-btn-primary-hover-bg);
        border-color: var(--cc-btn-primary-hover-border-color);
        color: var(--cc-btn-primary-hover-color)
    }

#cc-main .cm__btn--secondary {
    background: var(--cc-btn-secondary-bg);
    border-color: var(--cc-btn-secondary-border-color);
    color: var(--cc-btn-secondary-color)
}

    #cc-main .cm__btn--secondary:hover {
        background: var(--cc-btn-secondary-hover-bg);
        border-color: var(--cc-btn-secondary-hover-border-color);
        color: var(--cc-btn-secondary-hover-color)
    }

#cc-main .cm__btn--close {
    border-radius: 0;
    border-bottom-left-radius: var(--cc-btn-border-radius);
    border-right: none;
    border-top: none;
    display: none;
    font-size: 1em;
    height: 42px;
    min-width: auto !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    right: 0;
    top: 0;
    width: 42px
}

    #cc-main .cm__btn--close svg {
        stroke: var(--cc-btn-primary-color);
        transform: scale(.5);
        transition: stroke .15s ease
    }

    #cc-main .cm__btn--close:hover svg {
        stroke: var(--cc-btn-primary-hover-color)
    }

    #cc-main .cm__btn--close.cm__btn--secondary svg {
        stroke: var(--cc-btn-secondary-color)
    }

    #cc-main .cm__btn--close.cm__btn--secondary:hover svg {
        stroke: var(--cc-btn-secondary-hover-color)
    }

    #cc-main .cm__btn--close + .cm__texts .cm__title {
        padding-right: 3rem
    }

#cc-main .cm--inline .cm__btn-group {
    grid-auto-flow: column
}

#cc-main .cm__footer {
    background: var(--cc-footer-bg);
    border-top: 1px solid var(--cc-footer-border-color);
    color: var(--cc-footer-color);
    padding: .4em 0 .5em
}

#cc-main .cm__links {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
    padding-top: 0
}

#cc-main .cm__link-group {
    display: flex;
    flex-direction: row;
    font-size: .8em;
    width: 100%
}

    #cc-main .cm__link-group > * + * {
        margin-left: 1.3rem
    }

#cc-main .cm--flip .cm__btn:last-child {
    grid-row: 1
}

#cc-main .cm--inline.cm--flip .cm__btn:last-child {
    grid-column: 1
}

#cc-main .cm--box .cm__btn--close {
    display: block
}

#cc-main .cm--box.cm--flip .cm__btns {
    flex-direction: column-reverse
}

#cc-main .cm--box.cm--wide {
    max-width: 36em
}

    #cc-main .cm--box.cm--wide .cm__btns {
        flex-direction: row;
        justify-content: space-between
    }

    #cc-main .cm--box.cm--wide .cm__btn-group {
        grid-auto-flow: column
    }

    #cc-main .cm--box.cm--wide .cm__btn {
        min-width: 120px;
        padding-left: 1.8em;
        padding-right: 1.8em
    }

    #cc-main .cm--box.cm--wide.cm--flip .cm__btns {
        flex-direction: row-reverse
    }

    #cc-main .cm--box.cm--wide.cm--flip .cm__btn:last-child {
        grid-column: 1
    }

#cc-main .cm--cloud {
    max-width: 54em;
    width: unset
}

    #cc-main .cm--cloud .cm__body {
        flex-direction: row
    }

    #cc-main .cm--cloud .cm__texts {
        flex: 1
    }

    #cc-main .cm--cloud .cm__desc {
        max-height: 9.4em
    }

    #cc-main .cm--cloud .cm__btns {
        border-left: 1px solid var(--cc-separator-border-color);
        border-top: none;
        max-width: 23em
    }

    #cc-main .cm--cloud .cm__btn-group {
        flex-direction: column
    }

    #cc-main .cm--cloud .cm__btn {
        min-width: 19em
    }

    #cc-main .cm--cloud.cm--flip .cm__btn-group, #cc-main .cm--cloud.cm--flip .cm__btns {
        flex-direction: column-reverse
    }

    #cc-main .cm--cloud.cm--inline .cm__btn-group {
        flex-direction: row
    }

    #cc-main .cm--cloud.cm--inline .cm__btn {
        min-width: 10em
    }

    #cc-main .cm--cloud.cm--inline.cm--flip .cm__btn-group {
        flex-direction: row-reverse
    }

#cc-main .cm--bar {
    border-radius: 0;
    left: 0;
    margin: 0;
    max-width: unset;
    opacity: 1;
    right: 0;
    transform: translateY(0);
    width: 100vw;
    --cc-modal-transition-duration: .35s
}

    #cc-main .cm--bar.cm--top {
        top: 0;
        transform: translateY(-100%)
    }

    #cc-main .cm--bar.cm--bottom {
        bottom: 0;
        transform: translateY(100%)
    }

    #cc-main .cm--bar .cm__body, #cc-main .cm--bar .cm__links {
        margin: 0 auto;
        max-width: 55em;
        width: 100%
    }

    #cc-main .cm--bar .cm__body {
        padding: .5em 0 .9em
    }

    #cc-main .cm--bar .cm__btns {
        border-top: none;
        flex-direction: row;
        justify-content: space-between
    }

    #cc-main .cm--bar .cm__btn-group {
        grid-auto-flow: column
    }

    #cc-main .cm--bar:not(.cm--inline) .cm__btn + .cm__btn, #cc-main .cm--bar:not(.cm--inline) .cm__btn-group + .cm__btn-group {
        margin-left: .375rem;
        margin-top: 0
    }

    #cc-main .cm--bar .cm__btn {
        min-width: 120px;
        padding-left: 2em;
        padding-right: 2em
    }

    #cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn + .cm__btn, #cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn-group + .cm__btn-group {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: .375rem
    }

    #cc-main .cm--bar.cm--flip .cm__btns {
        flex-direction: row-reverse
    }

    #cc-main .cm--bar.cm--flip .cm__btn:last-child {
        grid-column: 1
    }

    #cc-main .cm--bar.cm--inline .cm__body, #cc-main .cm--bar.cm--inline .cm__links {
        max-width: 74em
    }

    #cc-main .cm--bar.cm--inline .cm__body {
        flex-direction: row;
        padding: 0
    }

    #cc-main .cm--bar.cm--inline .cm__btns {
        flex-direction: column;
        justify-content: center;
        max-width: 23em
    }

    #cc-main .cm--bar.cm--inline.cm--flip .cm__btns {
        flex-direction: column-reverse
    }

#cc-main .cc--anim .cm, #cc-main .cc--anim.cm-wrapper:before {
    transition: opacity var(--cc-modal-transition-duration) ease,visibility var(--cc-modal-transition-duration) ease,transform var(--cc-modal-transition-duration) ease
}

#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
    transition: background-color .15s ease,border-color .15s ease,color .15s ease
}

.disable--interaction #cc-main .cm-wrapper:before {
    background: var(--cc-overlay-bg);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 0
}

.show--consent #cc-main .cc--anim .cm {
    opacity: 1;
    transform: translateY(0);
    visibility: visible !important
}

.show--consent #cc-main .cc--anim .cm--middle {
    transform: translateY(-50%)
}

.show--consent #cc-main .cc--anim .cm--bar {
    transform: translateY(0)
}

.show--consent #cc-main .cc--anim.cm-wrapper:before {
    opacity: 1;
    visibility: visible
}

#cc-main.cc--rtl .cm__btn--close {
    border-bottom-left-radius: unset;
    border-bottom-right-radius: var(--cc-btn-border-radius);
    left: 0;
    right: unset
}

    #cc-main.cc--rtl .cm__btn--close + .cm__texts .cm__title {
        padding-left: 3rem !important;
        padding-right: 1.3rem
    }

#cc-main.cc--rtl .cm--inline .cm__btn + .cm__btn {
    margin-left: 0;
    margin-right: .375rem
}

#cc-main.cc--rtl .cm--inline.cm--flip .cm__btn + .cm__btn {
    margin-left: .375rem;
    margin-right: 0
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn-group + .cm__btn-group, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn-group + .cm__btn-group {
    margin-left: 0;
    margin-right: .375rem
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar.cm--flip .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide.cm--flip .cm__btn + .cm__btn {
    margin-left: .375rem;
    margin-right: 0
}

#cc-main.cc--rtl .cm__link-group > * + * {
    margin-left: 0;
    margin-right: 1.3rem
}

@media screen and (max-width:640px) {
    #cc-main {
        --cc-modal-margin: .5em
    }

        #cc-main .cm {
            max-width: none !important;
            width: auto !important
        }

        #cc-main .cm__body {
            flex-direction: column !important;
            padding: 0 !important
        }

        #cc-main .cm__btns, #cc-main .cm__desc, #cc-main .cm__links, #cc-main .cm__title {
            padding-left: 1.1rem !important;
            padding-right: 1.1rem !important
        }

        #cc-main .cm__btns {
            border-left: none !important;
            border-top: 1px solid var(--cc-separator-border-color) !important;
            flex-direction: column !important;
            max-width: none !important;
            min-width: auto !important
        }

        #cc-main .cm__btn + .cm__btn, #cc-main .cm__btn-group + .cm__btn-group {
            margin: .375rem 0 0 !important
        }

        #cc-main .cm--flip .cm__btn + .cm__btn, #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
            margin-bottom: .375rem !important;
            margin-top: 0 !important
        }

        #cc-main .cm__btn-group {
            display: flex !important;
            flex-direction: column !important;
            min-width: auto !important
        }

        #cc-main .cm__btn {
            flex: auto !important
        }

        #cc-main .cm__link-group {
            justify-content: center !important
        }

        #cc-main .cm--flip .cm__btn-group, #cc-main .cm--flip .cm__btns {
            flex-direction: column-reverse !important
        }
}

#cc-main .pm-wrapper {
    position: relative;
    z-index: 2
}

#cc-main .pm {
    background: var(--cc-bg);
    border-radius: var(--cc-modal-border-radius);
    box-shadow: 0 .625em 1.875em rgba(0,0,2,.3);
    display: flex;
    flex-direction: column;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    visibility: hidden;
    width: 100%;
    width: unset;
    z-index: 1
}

#cc-main svg {
    fill: none;
    width: 100%
}

#cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
    padding: 1em 1.4em
}

#cc-main .pm__header {
    align-items: center;
    border-bottom: 1px solid var(--cc-separator-border-color);
    display: flex;
    justify-content: space-between
}

#cc-main .pm__title {
    align-items: center;
    display: flex;
    flex: 1;
    font-weight: 600;
    margin-right: 2em
}

#cc-main .pm__close-btn {
    background: var(--cc-btn-secondary-bg);
    border: 1px solid var(--cc-btn-secondary-border-color);
    border-radius: var(--cc-btn-border-radius);
    height: 40px;
    position: relative;
    transition: all .15s ease;
    width: 40px
}

    #cc-main .pm__close-btn span {
        display: flex;
        height: 100%;
        width: 100%
    }

    #cc-main .pm__close-btn svg {
        stroke: var(--cc-btn-secondary-color);
        transform: scale(.5);
        transition: stroke .15s ease
    }

    #cc-main .pm__close-btn:hover {
        background: var(--cc-btn-secondary-hover-bg);
        border-color: var(--cc-btn-secondary-hover-border-color)
    }

        #cc-main .pm__close-btn:hover svg {
            stroke: var(--cc-btn-secondary-hover-color)
        }

#cc-main .pm__body {
    flex: 1;
    overflow-y: auto;
    overflow-y: overlay
}

#cc-main .pm__section, #cc-main .pm__section--toggle {
    border-radius: var(--cc-btn-border-radius);
    display: flex;
    flex-direction: column;
    margin-bottom: .5em
}

    #cc-main .pm__section--toggle .pm__section-desc-wrapper {
        border: 1px solid var(--cc-cookie-category-block-border);
        border-radius: var(--cc-btn-border-radius);
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        display: none;
        margin-top: 0 !important;
        overflow: hidden
    }

#cc-main .pm__section {
    border: 1px solid var(--cc-separator-border-color);
    padding: 1em;
    transition: background-color .25s ease,border-color .25s ease
}

    #cc-main .pm__section:first-child {
        border: none;
        margin-bottom: 2em;
        margin-top: 0;
        padding: 0;
        transition: none
    }

    #cc-main .pm__section:not(:first-child):hover {
        background: var(--cc-cookie-category-block-bg);
        border-color: var(--cc-cookie-category-block-border)
    }

#cc-main .pm__section-toggles + .pm__section {
    margin-top: 2em
}

#cc-main .pm__section--toggle {
    background: var(--cc-cookie-category-block-bg);
    border-top: none;
    margin-bottom: .375rem
}

    #cc-main .pm__section--toggle .pm__section-title {
        align-items: center;
        background: var(--cc-cookie-category-block-bg);
        border: 1px solid var(--cc-cookie-category-block-border);
        display: flex;
        justify-content: space-between;
        min-height: 58px;
        padding: 1.1em 5.4em 1.1em 1.2em;
        position: relative;
        transition: background-color .25s ease,border-color .25s ease;
        width: 100%
    }

        #cc-main .pm__section--toggle .pm__section-title:hover {
            background: var(--cc-cookie-category-block-hover-bg);
            border-color: var(--cc-cookie-category-block-hover-border)
        }

    #cc-main .pm__section--toggle .pm__section-desc {
        margin-top: 0;
        padding: 1em
    }

    #cc-main .pm__section--toggle.is-expanded {
        --cc-cookie-category-block-bg: var(--cc-cookie-category-expanded-block-bg);
        --cc-cookie-category-block-border: var(--cc-cookie-category-expanded-block-hover-bg)
    }

        #cc-main .pm__section--toggle.is-expanded .pm__section-title {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0
        }

        #cc-main .pm__section--toggle.is-expanded .pm__section-arrow svg {
            transform: scale(.5) rotate(180deg)
        }

        #cc-main .pm__section--toggle.is-expanded .pm__section-desc-wrapper {
            display: flex
        }

#cc-main .pm__section--expandable .pm__section-title {
    cursor: pointer;
    padding-left: 3.4em
}

#cc-main .pm__section--expandable .pm__section-arrow {
    background: var(--cc-toggle-readonly-bg);
    border-radius: 100%;
    display: flex;
    height: 20px;
    justify-content: center;
    left: 18px;
    pointer-events: none;
    position: absolute;
    width: 20px
}

    #cc-main .pm__section--expandable .pm__section-arrow svg {
        stroke: var(--cc-btn-secondary-color);
        transform: scale(.5)
    }

#cc-main .pm__section-title-wrapper {
    align-items: center;
    display: flex;
    position: relative
}

    #cc-main .pm__section-title-wrapper + .pm__section-desc-wrapper {
        margin-top: .85em
    }

#cc-main .pm__section-title {
    border-radius: var(--cc-btn-border-radius);
    font-size: .95em;
    font-weight: 600
}

#cc-main .pm__badge {
    align-items: center;
    background: var(--cc-btn-secondary-bg);
    border-radius: 5em;
    color: var(--cc-secondary-color);
    display: flex;
    flex: none;
    font-size: .8em;
    font-weight: 600;
    height: 23px;
    justify-content: center;
    margin-left: 1em;
    min-width: 23px;
    overflow: hidden;
    padding: 0 .6em 1px;
    position: relative;
    text-align: center;
    white-space: nowrap;
    width: auto
}

#cc-main .pm__service-counter {
    background: var(--cc-btn-primary-bg);
    color: var(--cc-btn-primary-color);
    padding: 0;
    width: 23px
}

    #cc-main .pm__service-counter[data-counterlabel] {
        padding: 0 .6em 1px;
        width: auto
    }

#cc-main .section__toggle, #cc-main .section__toggle-wrapper, #cc-main .toggle__icon, #cc-main .toggle__label {
    border-radius: var(--cc-pm-toggle-border-radius);
    height: 23px;
    transform: translateZ(0);
    width: 50px
}

#cc-main .section__toggle-wrapper {
    cursor: pointer;
    position: absolute;
    right: 18px;
    z-index: 1
}

#cc-main .toggle-service {
    height: 19px;
    position: relative;
    right: 0;
    width: 42px
}

    #cc-main .toggle-service .section__toggle, #cc-main .toggle-service .toggle__icon, #cc-main .toggle-service .toggle__label {
        height: 19px;
        width: 42px
    }

    #cc-main .toggle-service .toggle__icon {
        position: relative
    }

    #cc-main .toggle-service .toggle__icon-circle {
        height: 19px;
        width: 19px
    }

    #cc-main .toggle-service .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
        transform: translateX(23px)
    }

#cc-main .pm__section--toggle:nth-child(2) .section__toggle-wrapper:after {
    display: none !important
}

#cc-main .section__toggle {
    border: 0;
    cursor: pointer;
    display: block;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0
}

    #cc-main .section__toggle:disabled {
        cursor: not-allowed
    }

#cc-main .toggle__icon {
    background: var(--cc-toggle-off-bg);
    box-shadow: 0 0 0 1px var(--cc-toggle-off-bg);
    display: flex;
    flex-direction: row;
    pointer-events: none;
    position: absolute;
    transition: all .25s ease
}

#cc-main .toggle__icon-circle {
    background: var(--cc-toggle-off-knob-bg);
    border: none;
    border-radius: var(--cc-pm-toggle-border-radius);
    box-shadow: 0 1px 2px rgba(24,32,3,.36);
    display: block;
    height: 23px;
    left: 0;
    position: absolute;
    top: 0;
    transition: transform .25s ease,background-color .25s ease;
    width: 23px
}

#cc-main .toggle__icon-off, #cc-main .toggle__icon-on {
    height: 100%;
    position: absolute;
    transition: opacity .15s ease;
    width: 100%
}

#cc-main .toggle__icon-on {
    opacity: 0;
    transform: rotate(45deg)
}

    #cc-main .toggle__icon-on svg {
        stroke: var(--cc-toggle-on-bg);
        transform: scale(.55) rotate(-45deg)
    }

#cc-main .toggle__icon-off {
    opacity: 1
}

    #cc-main .toggle__icon-off svg {
        stroke: var(--cc-toggle-off-bg);
        transform: scale(.55)
    }

#cc-main .section__toggle:checked ~ .toggle__icon {
    background: var(--cc-toggle-on-bg);
    box-shadow: 0 0 0 1px var(--cc-toggle-on-bg)
}

    #cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
        background-color: var(--cc-toggle-on-knob-bg);
        transform: translateX(27px)
    }

    #cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-on {
        opacity: 1
    }

    #cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-off {
        opacity: 0
    }

#cc-main .section__toggle:checked:disabled ~ .toggle__icon {
    background: var(--cc-toggle-readonly-bg);
    box-shadow: 0 0 0 1px var(--cc-toggle-readonly-bg)
}

    #cc-main .section__toggle:checked:disabled ~ .toggle__icon .toggle__icon-circle {
        background: var(--cc-toggle-readonly-knob-bg);
        box-shadow: none
    }

    #cc-main .section__toggle:checked:disabled ~ .toggle__icon svg {
        stroke: var(--cc-toggle-readonly-knob-icon-color)
    }

#cc-main .toggle__label {
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1
}

#cc-main .pm__section-desc-wrapper {
    color: var(--cc-secondary-color);
    display: flex;
    flex-direction: column;
    font-size: .9em
}

    #cc-main .pm__section-desc-wrapper > :not(:last-child) {
        border-bottom: 1px solid var(--cc-cookie-category-block-border)
    }

#cc-main .pm__section-services {
    display: flex;
    flex-direction: column
}

#cc-main .pm__service {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: .4em 1.2em;
    position: relative;
    transition: background-color .15s ease
}

    #cc-main .pm__service:hover {
        background-color: var(--cc-cookie-category-block-hover-bg)
    }

#cc-main .pm__service-header {
    align-items: center;
    display: flex;
    margin-right: 1em;
    width: 100%
}

#cc-main .pm__service-icon {
    border: 2px solid;
    border-radius: 100%;
    height: 8px;
    margin-left: 6px;
    margin-right: 20px;
    margin-top: 1px;
    min-width: 8px
}

#cc-main .pm__service-title {
    font-size: .95em;
    width: 100%;
    word-break: break-word
}

#cc-main .pm__section-desc {
    line-height: 1.5em
}

#cc-main .pm__section-table {
    border-collapse: collapse;
    font-size: .9em;
    margin: 0;
    overflow: hidden;
    padding: 0;
    text-align: left;
    width: 100%
}

#cc-main .pm__table-caption {
    text-align: left
}

#cc-main .pm__table-caption, #cc-main .pm__table-head > tr {
    border-bottom: 1px dashed var(--cc-separator-border-color);
    color: var(--cc-primary-color);
    font-weight: 600
}

#cc-main .pm__table-tr {
    transition: background-color .15s ease
}

    #cc-main .pm__table-tr:hover {
        background: var(--cc-cookie-category-block-hover-bg)
    }

#cc-main .pm__table-caption, #cc-main .pm__table-td, #cc-main .pm__table-th {
    padding: .625em .625em .625em 1.2em;
    vertical-align: top
}

#cc-main .pm__footer {
    border-top: 1px solid var(--cc-separator-border-color);
    display: flex;
    justify-content: space-between
}

#cc-main .pm__btn-group {
    display: flex
}

    #cc-main .pm__btn + .pm__btn, #cc-main .pm__btn-group + .pm__btn-group {
        margin-left: .375rem
    }

#cc-main .pm--flip .pm__btn + .pm__btn, #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
    margin-left: 0;
    margin-right: .375rem
}

#cc-main .pm__btn {
    background: var(--cc-btn-primary-bg);
    border: 1px solid var(--cc-btn-primary-border-color);
    border-radius: var(--cc-btn-border-radius);
    color: var(--cc-btn-primary-color);
    flex: auto;
    font-size: .82em;
    font-weight: 600;
    min-height: 42px;
    min-width: 110px;
    padding: .5em 1.5em;
    text-align: center;
    transition: background-color .15s ease,border-color .15s ease,color .15s ease
}

    #cc-main .pm__btn:hover {
        background: var(--cc-btn-primary-hover-bg);
        border-color: var(--cc-btn-primary-hover-border-color);
        color: var(--cc-btn-primary-hover-color)
    }

#cc-main .pm__btn--secondary {
    background: var(--cc-btn-secondary-bg);
    border-color: var(--cc-btn-secondary-border-color);
    color: var(--cc-btn-secondary-color)
}

    #cc-main .pm__btn--secondary:hover {
        background: var(--cc-btn-secondary-hover-bg);
        border-color: var(--cc-btn-secondary-hover-border-color);
        color: var(--cc-btn-secondary-hover-color)
    }

#cc-main .pm--box {
    height: calc(100% - 2em);
    left: var(--cc-modal-margin);
    margin: 0 auto;
    max-height: 37.5em;
    max-width: 43em;
    right: var(--cc-modal-margin);
    top: 50%;
    transform: translateY(calc(-50% + 1.6em))
}

    #cc-main .pm--box.pm--flip .pm__btn-group, #cc-main .pm--box.pm--flip .pm__footer {
        flex-direction: row-reverse
    }

#cc-main .pm--bar {
    border-radius: 0;
    bottom: 0;
    height: 100%;
    margin: 0;
    max-height: none;
    max-width: 29em;
    opacity: 1;
    top: 0;
    width: 100%;
    --cc-modal-transition-duration: .35s
}

    #cc-main .pm--bar .pm__section-table, #cc-main .pm--bar .pm__table-body, #cc-main .pm--bar .pm__table-td, #cc-main .pm--bar .pm__table-th, #cc-main .pm--bar .pm__table-tr {
        display: block
    }

    #cc-main .pm--bar .pm__table-head {
        display: none
    }

    #cc-main .pm--bar .pm__table-caption {
        display: block
    }

    #cc-main .pm--bar .pm__table-tr:not(:last-child) {
        border-bottom: 1px solid var(--cc-separator-border-color)
    }

    #cc-main .pm--bar .pm__table-td {
        display: flex;
        justify-content: space-between
    }

        #cc-main .pm--bar .pm__table-td:before {
            color: var(--cc-primary-color);
            content: attr(data-column);
            flex: 1;
            font-weight: 600;
            min-width: 100px;
            overflow: hidden;
            padding-right: 2em;
            text-overflow: ellipsis
        }

        #cc-main .pm--bar .pm__table-td > div {
            flex: 3
        }

    #cc-main .pm--bar:not(.pm--wide) .pm__body, #cc-main .pm--bar:not(.pm--wide) .pm__footer, #cc-main .pm--bar:not(.pm--wide) .pm__header {
        padding: 1em 1.3em
    }

    #cc-main .pm--bar:not(.pm--wide) .pm__btn-group, #cc-main .pm--bar:not(.pm--wide) .pm__footer {
        flex-direction: column
    }

        #cc-main .pm--bar:not(.pm--wide) .pm__btn + .pm__btn, #cc-main .pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
            margin: .375rem 0 0
        }

    #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group, #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__footer {
        flex-direction: column-reverse
    }

        #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn + .pm__btn, #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group + .pm__btn-group {
            margin-bottom: .375rem;
            margin-top: 0
        }

    #cc-main .pm--bar:not(.pm--wide) .pm__badge {
        display: none
    }

    #cc-main .pm--bar.pm--left {
        left: 0;
        transform: translateX(-100%)
    }

    #cc-main .pm--bar.pm--right {
        right: 0;
        transform: translateX(100%)
    }

    #cc-main .pm--bar.pm--wide {
        max-width: 35em
    }

        #cc-main .pm--bar.pm--wide .pm__body, #cc-main .pm--bar.pm--wide .pm__footer, #cc-main .pm--bar.pm--wide .pm__header {
            padding: 1em 1.4em
        }

        #cc-main .pm--bar.pm--wide.pm--flip .pm__btn-group, #cc-main .pm--bar.pm--wide.pm--flip .pm__footer {
            flex-direction: row-reverse
        }

#cc-main .pm-overlay {
    background: var(--cc-overlay-bg);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 1
}

#cc-main .cc--anim .pm, #cc-main .cc--anim .pm-overlay {
    transition: opacity var(--cc-modal-transition-duration) ease,visibility var(--cc-modal-transition-duration) ease,transform var(--cc-modal-transition-duration) ease
}

.show--preferences #cc-main .cc--anim .pm {
    opacity: 1;
    visibility: visible !important
}

.show--preferences #cc-main .cc--anim .pm--box {
    transform: translateY(-50%)
}

.show--preferences #cc-main .cc--anim .pm--bar {
    transform: translateX(0)
}

.show--preferences #cc-main .cc--anim .pm-overlay {
    opacity: 1;
    visibility: visible
}

#cc-main.cc--rtl .pm__service-header {
    margin-left: 1em;
    margin-right: 0
}

#cc-main.cc--rtl .pm__section-arrow {
    left: unset;
    right: 18px
}

#cc-main.cc--rtl .section__toggle-wrapper {
    left: 18px;
    right: unset;
    transform-origin: left
}

#cc-main.cc--rtl .toggle-service {
    left: 0
}

#cc-main.cc--rtl .pm__service-icon {
    margin-left: 20px;
    margin-right: 5px
}

#cc-main.cc--rtl .pm__section--toggle .pm__section-title {
    padding-left: 5.4em;
    padding-right: 1.2em
}

#cc-main.cc--rtl .pm__section--expandable .pm__section-title {
    padding-right: 3.4em
}

#cc-main.cc--rtl .pm__badge {
    margin-left: unset;
    margin-right: 1em
}

#cc-main.cc--rtl .toggle__icon-circle {
    transform: translateX(27px)
}

#cc-main.cc--rtl .toggle-service .toggle__icon-circle {
    transform: translateX(23px)
}

#cc-main.cc--rtl .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
    transform: translateX(0)
}

#cc-main.cc--rtl .pm__table-td, #cc-main.cc--rtl .pm__table-th {
    padding-left: unset;
    padding-right: 1.2em;
    text-align: right
}

#cc-main.cc--rtl .pm__table-td {
    padding-left: unset;
    padding-right: 1.2em
}

    #cc-main.cc--rtl .pm__table-td:before {
        padding-left: 2em;
        padding-right: unset
    }

#cc-main.cc--rtl .pm__btn + .pm__btn, #cc-main.cc--rtl .pm__btn-group + .pm__btn-group {
    margin-left: 0;
    margin-right: .375rem
}

#cc-main.cc--rtl .pm--flip .pm__btn + .pm__btn, #cc-main.cc--rtl .pm--flip .pm__btn-group + .pm__btn-group {
    margin-left: .375rem;
    margin-right: 0
}

#cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn + .pm__btn, #cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
    margin-left: 0
}

@media screen and (max-width:640px) {
    #cc-main .pm {
        border-radius: 0;
        bottom: 0;
        height: auto;
        left: 0;
        max-height: 100%;
        max-width: none !important;
        right: 0;
        top: 0;
        transform: translateY(1.6em)
    }

    #cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
        padding: .9em !important
    }

    #cc-main .pm__badge {
        display: none
    }

    #cc-main .pm__section-table, #cc-main .pm__table-body, #cc-main .pm__table-caption, #cc-main .pm__table-td, #cc-main .pm__table-th, #cc-main .pm__table-tr {
        display: block
    }

    #cc-main .pm__table-head {
        display: none
    }

    #cc-main .pm__table-tr:not(:last-child) {
        border-bottom: 1px solid var(--cc-separator-border-color)
    }

    #cc-main .pm__table-td {
        display: flex;
        justify-content: space-between
    }

        #cc-main .pm__table-td:before {
            color: var(--cc-primary-color);
            content: attr(data-column);
            flex: 1;
            font-weight: 600;
            min-width: 100px;
            overflow: hidden;
            padding-right: 2em;
            text-overflow: ellipsis
        }

        #cc-main .pm__table-td > div {
            flex: 3
        }

    #cc-main .pm__btn-group, #cc-main .pm__footer {
        flex-direction: column !important
    }

    #cc-main .pm__btn-group {
        display: flex !important
    }

        #cc-main .pm__btn + .pm__btn, #cc-main .pm__btn-group + .pm__btn-group {
            margin: .375rem 0 0 !important
        }

    #cc-main .pm--flip .pm__btn + .pm__btn, #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
        margin-bottom: .375rem !important;
        margin-top: 0 !important
    }

    #cc-main .pm--flip .pm__btn-group, #cc-main .pm--flip .pm__footer {
        flex-direction: column-reverse !important
    }

    .show--preferences #cc-main .cc--anim .pm {
        transform: translateY(0) !important
    }
}



/*IKOST*/
#cc-main .cm__title + .cm__desc {
    margin-bottom: 10px;
}

#cc-main .cm--bar.cm--inline .cm__body, #cc-main .cm--bar.cm--inline .cm__links {
    max-width: 1503px;
}

#cc-main .cm__desc {
    max-height: 30vh;
}

#cc-main .cm__desc, #cc-main .cm__title {
    padding: 0 1rem;
}

#cc-main .cm {
    background-color: #161a1c;
}

#cc-main .cm__title {
    color: #e1e4e7
}

#cc-main .cm__desc {
    color: #c2d0e0;
}

#cc-main .cm__btn {
    background: var(--cc-btn-secondary-bg);
    border: 1px solid var(--cc-btn-secondary-border-color);
    border-radius: var(--cc-btn-border-radius);
    color: var(--cc-btn-secondary-color);
    font-size: .82em;
    font-weight: 600;
    min-height: 42px;
    padding: 0.5em 1em;
    text-align: center;
}

#cc-main .cm__btn--secondary {
    background: #161a1c;
    border-color: #161a1c;
    color: wheat;
    text-decoration: underline;
}

#cc-main .cm__texts {
    padding: 1rem 0 0;
}

#cc-main .cm__btn:hover {
    background: var(--cc-btn-secondary-hover-bg);
    border-color: var(--cc-btn-secondary-hover-border-color);
    color: var(--cc-btn-secondary-hover-color);
}

#cc-main .cm__btn--secondary:hover {
    background: #161a1c;
    border-color: #161a1c;
    color: wheat;
    text-decoration: underline;
}

@media screen and (max-width:640px) {
    #cc-main .cm__btn-group.cm__btn-group--uneven {
        flex-direction: row !important;
    }
}
/*IKOST*/


.brand {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -1px;
    color: #006400;
    text-transform: uppercase;
}

.header {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid #edf1f2;
    border-top: 1px solid #edf1f2;
}

    .header .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        /*    -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;*/
    }

.header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 0 0 calc(100% - 110px);
}

.header-item-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

    .header-item-right .menu-icon {
        font-size: 1.35rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1rem;
        margin-left: 1rem;
        color: var(--color-black);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

.header .menu > ul > li {
    display: inline-block;
    line-height: 55px;
    /* position: relative;*/
}

    .header .menu > ul > li > a:after {
        content: "";
        width: 1px;
        height: 22px;
        background-color: #edf1f2;
        position: absolute;
        right: -16px;
        top: 50%;
        margin-top: -11px;
    }

    .header .menu > ul > li > a {
        position: relative;
        font-family: "Nunito", sans-serif;
        font-optical-sizing: auto;
        font-size: 14px;
        line-height: 44px;
        display: inline-block;
        font-weight: 400;
        letter-spacing: 1px;
        border: none;
        outline: none;
        color: var(--color-black);
        text-transform: capitalize;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }

    .header .menu > ul > li .menu-subs {
        position: absolute;
        width: 100%;
        height: auto;
        padding: 1rem 2rem;
        z-index: 109;
        opacity: 0;
        visibility: hidden;
        border-radius: 0.25rem;
        border-top: 1px solid #006400;
        background: var(--color-white);
        -webkit-box-shadow: var(--shadow-medium);
        box-shadow: var(--shadow-medium);
    }

        .header .menu > ul > li .menu-subs > ul > li {
            line-height: 1;
        }

            .header .menu > ul > li .menu-subs > ul > li > a {
                display: inline-block;
                font-family: inherit;
                font-weight: 500;
                padding: 0.75rem 0;
                border: none;
                outline: none;
                color: var(--color-black);
                text-transform: capitalize;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

    .header .menu > ul > li .menu-column-1 {
        min-width: 16rem;
        max-width: 20rem;
    }

    .header .menu > ul > li .menu-subs.menu-mega {
        left: 10px;
        /* -webkit-transform: translateX(-50%);
        transform: translateX(-50%);*/
    }

        .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
            display: block;
            line-height: 25px;
            border-bottom: 1px solid #edf1f2;
            text-align: left;
        }

            .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
                display: inline-block;
                font-family: "Nunito", sans-serif;
                font-optical-sizing: auto;
                font-weight: 400;
                padding: 10px 0;
                border: none;
                outline: none;
                color: var(--color-black);
                text-transform: capitalize;
                -webkit-transition: color 0.3s ease;
                transition: color 0.3s ease;
            }

    .header .menu > ul > li .menu-subs.menu-column-4 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 1480px;
        width: 100%;
        padding: 30px 20px;
    }

        .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            padding: 0 1rem;
        }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
                font-family: inherit;
                font-weight: 500;
                padding: 0.75rem 0;
                color: #006400;
                text-transform: uppercase;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
                text-align: center;
            }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
                display: block;
                width: 100%;
                height: auto;
                margin-top: 0.75rem;
                -o-object-fit: cover;
                object-fit: cover;
            }

    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
    .header .menu > ul > li .menu-subs > ul > li > a:hover {
        color: #006400;
    }

    .header-item-right a:hover,
    .header .menu > ul > li:hover > a {
        color: #006400;
    }

.header .menu-mobile-header,
.header .menu-mobile-toggle {
    display: none;
}

#kelime2 {
    width: 680px;
    max-width: 680px;
    border: 1px solid #b3b3b3;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item-tumu {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0 1rem;
}

@media screen and (max-width:500px) {
}

@media screen and (max-width: 1300px) {
    #kelime2 {
        width: 428px;
        max-width: 428px;
    }
}

@media screen and (max-width: 1100px) {
    #kelime2 {
        max-width: 328px;
    }
}

@media screen and (min-width: 993px) {

    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
        border-bottom: none;
        text-align: left;
    }

        .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > span {
            cursor: default;
            font-weight: bold;
            color: gray;
            display: block;
            margin-bottom: 5px;
        }

        .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > div {
            padding: 10px 0;
        }

    .menu {
        /* width: 100%;*/
        /* margin: auto;*/
    }

    .menu-section {
        margin: 0;
        padding: 0;
        display: flex;
    }

    .header {
        margin: 10px 0 0 0;
    }

        .header .container {
            position: relative;
            padding: 0 10px;
            margin: auto;
            max-width: 1500px;
        }

        .header .menu > ul > li {
            display: inline-block;
            line-height: 44px;
            text-align: center;
            flex-shrink: 0;
            flex-grow: 1;
            cursor: pointer;
            padding: 0 16px;
        }

            .header .menu > ul > li:first-child {
                padding-left: 0;
            }

            .header .menu > ul > li > a {
                text-align: center;
                font-size: 16px;
                line-height: 55px;
            }

    .menu-item-has-children > a > .ion-ios-arrow-down {
        display: none;
    }

    .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
        opacity: 1;
        visibility: visible;
    }

    .mobillogo, .header .menu > ul > li.mobillogo {
        display: none;
    }



    .header-item-center {
        width: 100%;
        max-width: 1270px;
    }
}

#arama2 {
    max-width: 100%;
    padding: 9px;
    position: absolute;
    z-index: 9999;
}

@media screen and (max-width: 992px) {
    .header {
        border-bottom: none;
        border-top: none;
    }

    #arama2 {
        width: 100%;
        max-width: 100%;
        padding: 0px;
        position: relative;
    }

    #kelime2 {
        width: 100%;
        max-width: 100%;
        height: 44px;
        font-size: 14px;
    }

    .header .menu > ul > li {
        line-height: 50px;
        text-align: left;
    }

    .shopping-cart {
        zoom: .8;
        margin-right: 5px;
    }

    /* .globalheadsub {
        display: none;
    }*/
    /* #head1{
display:none;
    }*/

    .header-item-left, .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
        flex: 0 0 40px;
    }

    .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0.5rem 0;
    }

    .header .container {
        position: relative;
        padding: 0 5px;
        margin: auto;
    }

    .header .menu-mobile-toggle {
        position: relative;
        display: block;
        cursor: pointer;
        width: 30px;
        height: 35px;
        border: none;
        outline: none;
        background: none;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
        margin: 5px 0 0 5px;
    }

        .header .menu-mobile-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            left: 0;
            border: none;
            outline: none;
            opacity: 1;
            margin-top: 7px;
            border-radius: 0.25rem;
            background: var(--color-black);
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
        }

            .header .menu-mobile-toggle span:nth-child(1) {
                top: 0;
            }

            .header .menu-mobile-toggle span:nth-child(2), .header .menu-mobile-toggle span:nth-child(3) {
                top: 0.5rem;
            }

            .header .menu-mobile-toggle span:nth-child(4) {
                top: 1rem;
            }

    .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 75%;
        min-width: 280px;
        height: 100%;
        z-index: 111;
        overflow: hidden;
        background: var(--color-white);
        -webkit-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

        .header .menu.active {
            -webkit-transform: translate(0%);
            transform: translate(0%);
        }

        .header .menu > ul > li {
            display: block;
            line-height: 1;
            margin: 0;
        }

            .header .menu > ul > li > a {
                display: block;
                line-height: 50px;
                height: 50px;
                line-height: 50px;
                display: inline-block;
                padding: 0 10px;
                border-bottom: 1px solid #edf1f2;
                color: #555;
                font-size: 18px;
                width: 100%;
                overflow: hidden;
            }

                .header .menu > ul > li > a i.ion {
                    position: absolute;
                    font-size: 19px;
                    line-height: 19px;
                    opacity: .7;
                    top: 0;
                    right: -10px;
                    width: 14px;
                    height: 50px;
                    text-align: center;
                    -webkit-transform: rotate(-90deg);
                    transform: rotate(-90deg);
                }

        .header .menu .menu-mobile-header {
            position: relative;
            position: sticky;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            top: 0;
            height: 50px;
            z-index: 110;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            background: var(--color-white);
        }

            .header .menu .menu-mobile-header .menu-mobile-arrow {
                display: none;
                cursor: pointer;
                width: 40px;
                height: 40px;
                text-align: center;
                border: none;
                background-color: white;
                border-right: 1px solid rgba(0, 0, 0, 0.1);
                color: var(--color-black);
                font-size: 19px;
                line-height: 19px;
                opacity: .7;
            }

            .header .menu .menu-mobile-header.active .menu-mobile-arrow {
                display: block;
            }

            .header .menu .menu-mobile-header .menu-mobile-title {
                font-family: inherit;
                font-weight: 500;
                line-height: inherit;
                color: var(--color-black);
                text-transform: capitalize;
            }

            .header .menu .menu-mobile-header .menu-mobile-close {
                font-size: 30px;
                line-height: 3.125rem;
                cursor: pointer;
                width: 40px;
                height: 40px;
                text-align: center;
                border: none;
                background-color: white;
                border-left: 1px solid rgba(0, 0, 0, 0.1);
                color: var(--color-black);
            }

        .header .menu .menu-section {
            height: 100%;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 0 10px;
        }

        .header .menu > ul > li .menu-subs {
            position: absolute;
            display: none;
            top: 0;
            left: 0;
            max-width: none;
            min-width: auto;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 1rem;
            padding-top: 4rem;
            opacity: 1;
            overflow-y: auto;
            visibility: visible;
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .header .menu > ul > li .menu-subs.menu-mega {
                position: absolute;
                display: none;
                top: 0;
                left: 0;
                max-width: none;
                min-width: auto;
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 1rem;
                padding-top: 60px;
                opacity: 1;
                overflow-y: auto;
                visibility: visible;
                -webkit-transform: translateX(0%);
                transform: translateX(0%);
                -webkit-box-shadow: none;
                box-shadow: none;
            }

            .header .menu > ul > li .menu-subs.active {
                display: block;
            }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
                -webkit-box-flex: 0;
                -ms-flex: 0 0 100%;
                flex: 0 0 100%;
                padding: 0rem;
            }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
                    margin-top: 0;
                }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
                    margin-bottom: 1.25rem;
                }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
                    margin-bottom: 0rem;
                }

            .header .menu > ul > li .menu-subs > ul > li > a {
                display: block;
            }

            .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
                margin-bottom: 1rem;
                padding-left: 5px;
            }

                .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
                    display: block;
                    padding-left: 15px;
                    font-size: 18px;
                    color: #555;
                }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.65);
        -webkit-transition: all 0.45s ease-in-out;
        transition: all 0.45s ease-in-out;
    }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
}

.menu-section {
    margin: 0;
    padding: 0;
}

    .menu-section img {
        width: 40px;
        margin-right: 5px;
    }

.user-menu__items img {
    width: 25px;
    margin: 0 8px;
}

.user-menu__items li {
    list-style: none;
    display: inline-block;
    margin-right: 8px;
}

.topsNEW {
    max-width: 1480px;
    margin: auto;
    text-align: center;
}

.bitkititle {
    margin-top: -165px;
    position: relative;
}

.product_resimdiv {
    background-color: white;
    border: 1px solid #fff;
    height: 352px;
}

.magtop {
    background-image: url(../../../icons/magaza2022.png);
    padding: 1px 0 1px 24px;
    background-repeat: no-repeat;
    background-size: contain;
    font-weight: bold;
}

.headtop1 {
    background-image: url(../../../icons/tel2022.png);
    padding: 0 0 0 22px;
    background-repeat: no-repeat;
    background-size: contain;
}

.headtop2 {
    background-image: url(../../../icons/magaza2022.png);
    padding: 0 0 0 22px;
    background-repeat: no-repeat;
    background-size: contain;
}

.catimg {
    width: 87px;
    max-width: 87px;
    /* height: 72px;*/
    /* border: 1px solid #e6e6e6;*/
    border-radius: 50%;
    box-sizing: border-box;
    padding: 2px;
}

-webkit-transform:scale(.825);transform-origin:0 0;-webkit-transform-origin:0 0
}

.lazyload, .lazyloading {
    opacity: 0
}

.lazyloaded {
    opacity: 1;
    -webkit-transition: opacity .3s linear;
    -o-transition: opacity .3s linear;
    transition: opacity .3s linear
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    border: 0 solid rgba(255,255,255,0)
}

    ::-webkit-scrollbar-track:horizontal {
        border-bottom-width: 1px
    }

    ::-webkit-scrollbar-track:vertical {
        border-right-width: 4px
    }

::-webkit-scrollbar-thumb {
    border: 0 solid #fff;
    background-color: rgba(0,0,0,.32);
    border-radius: 6px
}

    ::-webkit-scrollbar-thumb:horizontal:hover {
        background-color: rgba(0,0,0,.52)
    }

    ::-webkit-scrollbar-thumb:vertical:hover {
        background-color: rgba(0,0,0,.52)
    }

.chevron-icon {
    position: static;
    font-size: 9px;
}

.filtreboxesPARENTactive .chevron-icon {
    transform: rotate(270deg);
}

.chevron-icon {
    position: absolute;
    right: 8px;
    top: 14px;
    font-size: 9px;
    margin: 0;
}

[class*=" icon-"], [class^=icon-] {
    display: inline-block;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    font-feature-settings: "liga";
    -webkit-font-variant-ligatures: discretionary-ligatures;
    font-variant-ligatures: discretionary-ligatures;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.chevron-icon {
    transform: rotate(90deg);
}

.icon-search-444 {
    font-size: 24px;
    line-height: 24px;
    color: white;
    margin: 0 11px;
    display: block;
}

.icon-search-555 {
    display: none;
    font-size: 24px;
    line-height: 24px;
    color: black;
    margin: 0 11px;
    position: absolute;
    left: -45px;
}

    .icon-search-555:before {
        content: "\e92e";
    }

.categoryFilterTitleActive {
    color: #003CA6;
}

.filter__dropdown-footer {
    position: static;
    width: auto;
    text-align: right;
    border-top: 1px solid #d1d1d1;
    padding: 15px 20px 0;
    margin: 15px -20px 0;
}

    .filter__dropdown-footer a, .filter__dropdown-footer button {
        font-size: 18px;
        line-height: 1;
        color: #ededed;
        text-align: center;
        background: #003CA6;
        padding: 16px;
        display: block;
        border: 0;
        width: 100%;
    }


@media (min-width: 992px) {

    .onlymobile, .header .menu > ul > li.onlymobile {
        display: none;
    }

    .jqm-fullwidth {
        padding: 0 10px;
    }
}

@media (min-width: 993px) {

    .acResults {
        width: 680px !important;
    }

    .filter__dropdown-footer a, .filter__dropdown-footer button {
        width: auto;
        display: inline-block;
        padding: 15px 21px;
        border-radius: 5px;
    }
}

.filtdiv {
    margin-top: 20px;
}

.category-order {
    display: flex;
    padding: 12px 0 12px;
}

.filter__selected {
    position: relative;
    /*    overflow: hidden;
    white-space: nowrap;*/
}

.category-order__filter {
    height: 30px;
    display: inline-block;
}

.filter__selected:before {
    content: " ";
    display: table;
}

.filter__selected-tag {
    background: #edf1f2;
    border-radius: 15px;
    height: 30px;
    line-height: 30px;
    color: #555;
    font-size: 14px;
    cursor: text;
    padding: 0 29px 0 10px;
    min-width: 0;
    display: inline-block;
    margin: 0 4px 10px 0;
    position: relative;
}

.filter__selected:after {
    display: table;
    clear: both;
    content: '';
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 20px;
    height: 30px;
    opacity: .95;
    pointer-events: none;
    background-image: linear-gradient(270deg,#fff,rgba(220,215,253,0));
}

.filter__selected-tag span {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 6px;
    line-height: 16px !important;
    width: 16px;
    height: 16px;
    background: #fff;
    color: #555;
    cursor: pointer;
}

.filter-responsive-buttons {
    display: none;
}

.superline {
    height: 16px;
    margin: 14px 5px;
    width: 1px;
    background-color: transparent;
    display: inline-block;
}

.hizliincele {
    background-color: #445970;
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
}


.product h3, .product h4 {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    height: auto;
    display: block;
    padding: 5px 0 0 0;
    margin: 5px 0 4px 0;
}

.sticker-kuryesel {
    background-image: url(../../../icons/ayni-gun.png);
    height: 80px;
    width: 80px;
    border-radius: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
    bottom: 0;
    top: auto;
}

.sticker-barkod {
    position: static;
    max-width: 100%;
    background-image: none;
    background-color: #fbecd9;
    color: #003CA6;
    padding: 5px 7px;
    font-size: 13px;
    width: auto;
    text-align: left;
}

.sticker-teslimat {
    position: static;
    max-width: 100%;
    background-image: none;
    /*    background-color: rgb(242, 232, 255);
*/ color: #003CA6;
    padding: 2px 5px;
    font-size: 13px;
    width: auto;
    margin-top: 5px;
    border-radius: 10px;
    text-align: left;
}

.action-button {
    position: static;
    max-width: 100%;
    border-radius: 6px;
    background-image: none;
    background-color: #fbecd9;
    color: #003CA6;
    padding: 7px 15px;
    margin: 5px 0;
    font-size: 14px;
    display: inline-block;
    width: auto;
    cursor: pointer;
}

.puantext {
    color: #003CA6;
}


.slick-slide img {
    display: block;
    margin: auto;
    width: auto;
    max-width: 100%
}

    .star, .slick-slide img.star {
        width: 85px;
        margin: 10px 0;
    }

.ensongezdiv {
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 1480px;
    margin-top: 40px;
}

.products {
    width: 100%;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

    .product, .products a {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: flex;
        border-radius: 5px;
        -webkit-flex: 0 0 calc(20% - 20px);
        -moz-flex: 0 0 calc(20% - 20px);
        -ms-flex: 0 0 calc(20% - 20px);
        flex: 0 0 calc(20% - 20px);
        padding: 10px;
        margin: 10px;
        position: relative;
        text-align: center;
        border: 1px solid #edf1f2;
        box-shadow: 0 0 4px rgba(0, 0, 0, .025);
        height: 470px;
        flex-direction: column;
    }

        .pi-price, .product h3, .product h4, .productalt {
            text-align: left;
        }

@media (min-width: 1300px) {
    .slick-slide > .productalt {
        height: 150px;
    }
}

@media (min-width: 500px) and (max-width: 992px) {
    .product_resimdiv {
        height: 240px;
    }

    .product, .products a {
        height: 370px;
    }
}

@media (min-width: 500px) and (max-width: 992px) {
    .product_resimdiv {
        height: 240px;
    }

    .product, .products a {
        height: 370px;
    }
}

@media only screen and (min-width: 1024px) {
    .product:hover, .products a:hover {
        -webkit-box-shadow: 1px 1px 7px rgba(0, 0, 0, .4) !important;
        -moz-box-shadow: 1px 1px 7px rgba(0, 0, 0, .4) !important;
        box-shadow: 1px 1px 7px rgba(0, 0, 0, .4) !important;
    }
}

@media (max-width: 1300px) {
    .product, .products a {
        -webkit-flex: 0 0 calc(25% - 10px);
        -moz-flex: 0 0 calc(25% - 10px);
        -ms-flex: 0 0 calc(25% - 10px);
        flex: 0 0 calc(25% - 10px);
        padding: 10px;
        margin: 5px;
        position: relative;
        text-align: center;
    }

    .mahallediv2 {
        display: none;
    }

    .mahallediv1 {
        width: calc(100% - 10px);
        padding: 5px;
    }
}

@media (max-width:1024px) {

    .product, .products a {
        -webkit-flex: 0 0 calc(33% - 10px);
        -moz-flex: 0 0 calc(33% - 10px);
        -ms-flex: 0 0 calc(33% - 10px);
        flex: 0 0 calc(33% - 10px);
        padding: 10px;
        margin: 5px;
        position: relative;
        text-align: center;
    }
}

.benzertitle {
    font-size: 21px;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.col-xs-6 {
    width: 50%;
    float: left;
}

.filter-responsive-button:nth-child(2n) {
    border-left: 1px solid #edf1f2;
}

.filter-responsive-button {
    padding: 17px 0px 14px;
}

.filter-responsive-buttons {
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    margin: 5px 0 0;
    font-size: 16px;
    color: #555;
    text-align: center;
    padding: 0;
}

.filter-responsive-button__icon {
    font-size: 14px;
    line-height: 39px;
    color: #555;
    margin: 0 5px 0 0;
    HEIGHT: 20px;
    width: 20px;
}

.ucgorselDIV {
    display: flex;
    width: 100%;
    margin: 15px 0;
    justify-content: space-between;
}

    .ucgorselDIV > a, .ucgorselDIV > div {
        display: flex;
        flex: 0 0 calc(33% - 5px);
        text-align: center;
        flex-direction: column;
    }

.memnuniyetANAdiv {
    background-color: #f8ecd6;
    display: flex;
}

.memnuniyetTextdiv {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    padding: 20px 0 20px 60px;
    justify-content: center;
}

    .memnuniyetTextdiv b {
        font-size: 26px;
    }

    .memnuniyetTextdiv > p > a {
        color: black;
        text-decoration: underline;
        font-weight: 500 !important;
        margin-top: 14px;
        display: inline-block;
    }

.memnuniyetIMGdiv {
    flex: 0 0 50%;
    text-align: center;
    padding: 3% 12%;
}

.pre-footer a {
    color: #000;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.pretitle {
    font-weight: 600;
    margin-bottom: 15px;
}

.filtdiv1 {
    display: inline-block;
}

.filtrespan {
    display: block;
    width: 100%;
}

@media (max-width: 992px) {
    .filtdiv2 {
        top: 0;
        border-top: none;
        margin-top: 0;
    }

    .filtdiv1, .filtdiv2, .siralamatitle, .siralamatitleICON {
        display: none;
    }

    .pretitle:before {
        position: absolute;
        right: 15px;
        top: 6px;
        content: "\e600";
        font-family: 'icomoon';
        font-size: 10.5px;
    }

    .pretitleon:before {
        content: "\e602";
    }

    .pretitle {
        position: relative;
        text-align: left;
    }

    .pre-footer a {
        font-size: 12px;
        text-align: left;
    }

    .foot-child {
        display: none;
    }

    .memnuniyetANAdiv {
        background-color: #f8ecd6;
        display: flex;
        flex-direction: column-reverse;
    }

    .memnuniyetTextdiv {
        padding: 20px;
    }

    .ucgorselDIV {
        flex-direction: column;
    }

        .ucgorselDIV > a, .ucgorselDIV > div {
            display: flex;
            flex: 0 0 100%;
            margin-bottom: 10px;
        }

    .benzertitle {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .h2, h2 {
        font-size: 18px;
    }

    .slick-slide > .productalt > h3 {
        line-height: 19px;
    }

    .slick-slide > .productalt > .sticker-barkod {
        display: none;
    }

    .slick-slide > .productalt > .sticker-teslimat {
        font-size: 10px;
        padding: 2px 0;
    }

    .slick-slide > .productalt > .pi-price > .indirimoran {
        position: absolute;
        top: 10px;
    }

    .slick-slide > .productalt > .pi-price > .fipriceleft {
        font-size: 14.6px;
    }

    .slick-slide > .productalt > .pi-price > .fipriceright {
        font-size: 11.0px;
    }

    .slick-slide > .productalt > .pi-price > .priceleft {
        font-size: 14.6px;
    }

    .slick-slide > .productalt > .pi-price > .priceright {
        font-size: 11.0px;
    }

    .slick-slide > .productalt {
        padding: 5px;
    }

    .star {
        width: 85px;
        margin: 4px 0;
    }

    .sticker-teslimat {
        font-size: 12px;
    }



    .products {
        padding: 10px 10px;
    }

    .product h3, .product h4 {
        text-align: left;
        font-size: 14px;
        min-height: 44px;
        margin-bottom: 0;
        line-height: 22px;
    }

    .pi-price {
        text-align: left;
    }

    .product, .products a {
        height: auto;
        -webkit-flex: 0 0 100%;
        -moz-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0;
        margin: 2px;
        margin-bottom: 15px;
        background-color: #fff;
        border-radius: 4px;
        border: 1px solid #edf1f2;
        box-shadow: 0 0 4px rgba(0, 0, 0, .025);
        flex-direction: row;
    }

    .product_resimdiv {
        border: none;
        flex-grow: initial;
        display: block;
        height: auto;
        height: 150px;
        flex: 40%;
    }

    .productalt {
        padding: 10px;
        flex: 60%;
        text-align: left;
    }

    .product_resimdiv img {
        max-height: 100%;
    }

    .product {
        -webkit-flex: 0 0 calc(50% - 10px);
        -moz-flex: 0 0 calc(50% - 10px);
        -ms-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        margin: 5px;
    }




    .acResults4 {
        width: 100%;
    }



    #arama2 {
        display: block;
    }

    .smARA {
        padding-right: 5px;
        position: absolute;
        top: 0;
        left: auto;
        z-index: 6;
        right: 0;
        width: 44px;
        height: 44px;
    }

    .sticker-kuryesel {
        background-image: url(../../../icons/ayni-gun.png);
        height: 57px;
        border-radius: 27px;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: white;
        bottom: 0;
        top: auto;
    }


    .bitkititle {
        margin-top: -185px;
        position: relative;
    }

    .chevron-icon {
        position: absolute;
        right: 14px;
        top: 20px;
        font-size: 9px;
        margin: 0;
    }

    .filter-responsive-buttons {
        display: block;
        position: relative;
    }

    .filtdiv {
        display: none;
        margin: 0;
        margin-top: -1px;
    }

    .filter__selected-tag span {
        display: none;
    }

    .filter__selected-tag {
        padding: 0 10px 0 10px;
    }
}

.filter__selected-tag-icon {
    background: #edf1f2;
    color: #003CA6;
    font-size: .6rem;
    margin: 0 0 0 4px;
    vertical-align: baseline;
    border-radius: 50%;
    text-align: center;
    width: 22px;
    height: 22px;
    line-height: 22px !important;
}

.icon-close:before {
    content: "\e60c";
}

.category-order__filter--clear {
    display: flex;
}

.filter__clean-btn {
    display: inline-block;
    background: #fff;
    height: 30px;
    border: 1px solid #e2e7e9;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    color: #555;
    cursor: pointer;
    padding: 0 16px;
    margin-left: 5px;
}

.category-order__text {
    min-width: 180px;
    text-align: right;
    white-space: nowrap;
    padding: 0 0 0 20px;
    flex-grow: 2;
}



.filter-responsive-button__icon {
    font-size: 14px;
    line-height: 39px;
    color: #555;
    margin: 0 5px 0 0;
    HEIGHT: 20px;
    width: 20px;
    /*background-image: url('filtrele.png');
    background-size: contain;*/
}

.mahgizli {
    display: none;
}

.mahallediv1text1 {
    color: #292f36;
    /* background: #f5f5f5;*/
    cursor: pointer;
}

    .mahallediv1text1 p {
        padding: 5px 40px 0;
        margin: 0;
        display: block;
        height: 40px;
        line-height: 30px;
        text-align: left;
    }

.mahallediv1 {
    border: 2px solid #003ca6;
    position: relative;
    margin: 5px 0;
    background-image: URL('../../../tc-images-product-page/destination-black.svg');
    background-repeat: no-repeat;
    background-position-x: 7px;
    background-position-y: 14px;
    background-size: 24px;
    padding-left: 32px;
}

.mahalledivOFF {
    background-color: #efefef;
    padding-left: 0;
}

.buradanbasla {
    float: left;
    width: 100px;
    position: absolute;
    top: auto;
    left: auto;
    z-index: 5;
    margin-top: -10px;
}

.placeicon {
    float: left;
    width: 24px;
    margin: 2px 5px;
}

.catnavparent2 a {
    display: inline-block;
    padding: 0 10px;
    font-size: 13px;
    line-height: 16px;
}

.pre-footer p {
    margin-bottom: 20px;
    font-size: 12px;
}

.district-search-button__icon-arrow {
    font-size: 11px;
    color: #8e8e8e;
    position: absolute;
    right: 2px;
    top: 5px;
    padding: 14px;
    /*    background: #f5f5f5;*/
}

.district-search__all-info-wrapper {
    padding: 10px 5px;
}

.district-search__icon-magic-wand {
    float: left;
    font-size: 23px;
    color: #aaa;
    margin: 5px 11px 0 7px;
}

input[type=text], input[type=tel], input[type=email], input[type=tel], textarea, select, input.form-control, textarea.form-control {
    font-size: 15px;
}

#gonderbttn {
    margin-top: 15px;
    margin-bottom: 30px;
    width: 386px;
    max-width: 100%;
    font-size: 24px;
    height: 60px;
    background-color: #003CA6;
    color: white;
    font-weight: bold;
    font-family: "Nunito", sans-serif;
}

.bloklist {
    max-width: 1480px;
    margin: auto;
    padding: 0 15px;
}

.aciklamatext {
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
    color: rgb(70, 70, 70);
}

    .aciklamatext > div > div > p, .aciklamatext div > div a {
        font-weight: 300 !important;
        color: rgb(70, 70, 70);
    }

    .aciklamatext > div > div > h2 {
        margin-top: 20px;
        line-height: 32px;
    }

    .aciklamatext > div > div > ul {
        display: flex;
        padding: 0;
        margin: 15px;
        flex-wrap: wrap;
    }

        .aciklamatext > div > div > ul > li {
            flex: 50%;
        }

::-webkit-input-placeholder { /* Edge */
    color: #ccc
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc
}

::placeholder {
    color: #ccc
}

.sepetmain {
    max-width: 1180px;
    width: 100%;
    margin: auto;
}

.SEPETSOL {
    padding: 10px;
    /* background-color: #f4f4f4; */
    color: black;
    width: calc(66% - 10px);
    margin: 5px;
    float: left;
}

.SEPETSAG {
    padding: 10px;
    color: black;
    width: calc(33% - 10px);
    margin: 5px;
    margin-top: 15px;
    float: left;
    border-radius: 6px;
    border: 2px solid #edf1f1;
}

.yenibitki {
    text-align: center;
    font-size: 33px;
    padding: 0 30px;
}

#superpagesnav a {
    display: inline-block;
    padding: 5px 12px;
    height: 40px;
    width: 120px;
    border-radius: 10px;
    text-align: center;
    margin: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-origin: content-box;
    background-color: white;
}

.super0 {
    background-image: url('../../../resimler_kategori/taze-cicek.png?v=351');
}

.super627 {
    background-image: url('../../../resimler_kategori/taze-cicek-pro.png?v=351');
}

.super438 {
    background-image: url('../../../resimler_kategori/taze-bitki.png?v=351');
}

.super425 {
    background-image: url(../../../resimler_kategori/hediye.png?v=351);
}

#superpagesnav .superpagesactive0 {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #f3f7fe;
    -webkit-box-shadow: inset 0 0 2px rgba(243, 247, 254, 0.7), inset 0 0 2px rgba(243, 247, 254, 0.5), inset -1px 0 1px rgba(243, 247, 254, 0.5), inset 1px 0 1px rgba(243, 247, 254, 0.5);
    box-shadow: inset 0 0 2px rgba(243, 247, 254, 0.7), inset 0 0 2px rgba(243, 247, 254, 0.5), inset -1px 0 1px rgba(243, 247, 254, 0.5), inset 1px 0 1px rgba(243, 247, 254, 0.5);
}

#superpagesnav .superpagesactive627 {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #fefdeb;
    -webkit-box-shadow: inset 0 0 2px rgba(254, 253, 235, 0.7), inset 0 0 2px rgba(254, 253, 235, 0.5), inset -1px 0 1px rgba(254, 253, 235, 0.5), inset 1px 0 1px rgba(254, 253, 235, 0.5);
    box-shadow: inset 0 0 2px rgba(254, 253, 235, 0.7), inset 0 0 2px rgba(254, 253, 235, 0.5), inset -1px 0 1px rgba(254, 253, 235, 0.5), inset 1px 0 1px rgba(254, 253, 235, 0.5);
}

#superpagesnav .superpagesactive438 {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #f3fdf8;
    -webkit-box-shadow: inset 0 0 2px rgba(243, 253, 248, 0.7), inset 0 0 2px rgba(243, 253, 248, 0.5), inset -1px 0 1px rgba(243, 253, 248, 0.5), inset 1px 0 1px rgba(243, 253, 248, 0.5);
    box-shadow: inset 0 0 2px rgba(243, 253, 248, 0.7), inset 0 0 2px rgba(243, 253, 248, 0.5), inset -1px 0 1px rgba(243, 253, 248, 0.5), inset 1px 0 1px rgba(243, 253, 248, 0.5);
}

#superpagesnav .superpagesactive425 {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #e9edfd;
    -webkit-box-shadow: inset 0 0 2px rgba(233, 237, 253, 0.7), inset 0 0 2px rgba(233, 237, 253, 0.5), inset -1px 0 1px rgba(233, 237, 253, 0.5), inset 1px 0 1px rgba(233, 237, 253, 0.5);
    box-shadow: inset 0 0 2px rgba(233, 237, 253, 0.7), inset 0 0 2px rgba(233, 237, 253, 0.5), inset -1px 0 1px rgba(233, 237, 253, 0.5), inset 1px 0 1px rgba(233, 237, 253, 0.5);
}

.superpages {
    /*  background-color: #e5e5e5;
    border-bottom: 2px solid #f7f7f7;*/
}

    .superpages:hover {
        /*  background-color: #8e8e8e;*/
    }

/*.superpagesactive {
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 12px -4px rgba(0,0,0,0.63);
    box-shadow: 5px 5px 12px -4px rgba(0,0,0,0.63);
}*/
#superpagesnav {
    padding: 2px;
    background: white;
    border-radius: 70px;
}

    #superpagesnav .superpagesactive {
        background-color: #fff;
        border-radius: 50px;
        border: 1px solid #f3f7fe;
        -webkit-box-shadow: inset 0 0 1px rgba(243, 247, 254, 0.7), inset 0 0 1px rgba(243, 247, 254, 0.5), inset -1px 0 1px rgba(243, 247, 254, 0.5), inset 1px 0 1px rgba(243, 247, 254, 0.5);
        box-shadow: inset 0 0 1px rgba(243, 247, 254, 0.7), inset 0 0 1px rgba(243, 247, 254, 0.5), inset -1px 0 1px rgba(243, 247, 254, 0.5), inset 1px 0 1px rgba(243, 247, 254, 0.5);
    }

.superpagesactive2 {
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 12px -4px rgba(0,0,0,0.63);
    box-shadow: 5px 5px 12px -4px rgba(0,0,0,0.63);
}



.globalhead {
    background: rgb(225, 248, 231);
    border-bottom: 0;
}

#preh {
    background: #f7f7f7;
    /*   min-height: 10px;*/
}

.col-md-4 > a > img {
    border-radius: 12px;
}

@media (max-width: 992px) {
    .aciklamatext {
        font-size: 12px;
        margin-top: 15px;
    }

    .mahallediv1 {
        margin: 5px 5px;
    }

    .buradanbasla {
        display: none;
    }

    .superline {
        height: 16px;
        margin: 10px 5px;
        width: 1px;
        background-color: #8E8E93;
        display: inline-block;
    }

    #superpagesnav {
        text-align: center;
    }
    /*   .col-xs-4 {
        width: 33.333%;
        padding-left: 10px;
        padding-right: 10px;
    }*/
    .catnavparent2 a {
        display: inline-block;
        padding: 0 4px;
        font-size: 10.5px;
        font-weight: normal;
        line-height: 12px;
    }

    .globalhead {
        background: #fff;
        border-bottom: 0;
    }

    .globalheadsub {
        display: none;
        /*background: #f7f7f7;*/
        border-radius: 8px;
        margin: 0px;
        padding: 0px;
    }

    .globalhead2 {
        display: none;
    }

    .mobillogo {
        display: inline-block;
        width: 133px;
        max-width: 100%;
        margin-top: 8px;
    }

    .mobillogo2 {
        display: inline-block;
        width: auto;
        max-height: 35px;
        max-width: 100%;
        margin-top: 4px;
    }

    .header {
        border-top: none;
    }

    #superpagesnav a {
        display: inline-block;
        padding: 4px 8px;
        height: 30px;
        width: calc(25% - 8px);
        border-radius: 10px;
        text-align: center;
        margin: 4px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-origin: content-box;
    }

    .globalhead1, .globalhead2 {
        width: 100%;
        padding: 5px;
    }

    .yenibitki {
        text-align: center;
        font-size: 23px;
        padding: 0 5px;
    }

    .SEPETSOL {
        padding: 10px;
        /* background-color: #f4f4f4; */
        color: black;
        width: calc(100% - 5px);
        margin: 5px;
        float: left;
    }

    .SEPETSAG {
        padding: 10px;
        color: black;
        width: calc(100% - 20px);
        margin: 10px;
        margin-top: 0;
        float: left;
        border-radius: 6px;
        border: 2px solid #edf1f1;
    }
}

.formdiv {
    position: relative;
}

.form-group__show-type {
    position: absolute;
    top: 2px;
    right: 0;
    width: 45px;
    height: 45px;
    margin: 0;
    cursor: pointer;
    font-size: 26px;
    text-align: center;
}

    .form-group__show-type:before {
        position: absolute;
        right: 14px;
        top: 14px;
    }

h3.yenigelen, h2.yenigelen {
    font-size: 33px;
    margin: 35px 0 30px 0;
    padding: 0 10px;
}

.product h3, .product h4 {
    overflow: hidden;
}

.red.btn {
    color: #FFFFFF;
    background-color: #d84a38;
    border-radius: 6px;
    max-width: 265px;
    font-size: 16.5px;
    padding: 6px 20px;
    height: 50px;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    line-height: 40px;
}



.globalheadsub {
    padding: 5px 1px 8px 0px;
    max-width: 1480px;
}


.mahallesec {
    margin: 0;
    background-color: #FFFFFF;
}

#mahalleparent {
    width: 100%;
    border-radius: 10px 10px 0 0;
    background-color: #FFFFFF;
    max-width: 1480px;
    min-height: 60px;
    margin: auto;
    padding: 0;
}

.analogoIMG {
    max-width: 222px;
    display: block;
    float: left;
    margin-top: 10px;
    margin-right: 34px;
}

.analogoIMG2 {
    max-width: 150px;
    display: block;
    float: left;
    margin-right: 50px;
    max-height: 60px;
    margin: 10px;
    margin-right: 50px;
}

.product-page h1 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    padding-left: 10px;
}

.breadcrumb {
    margin: 10px auto;
    max-width: 1480px;
    display: block;
    position: static;
    width: 100%;
}

    .ecommerce .breadcrumb h1, .breadcrumb h1, .ecommerce .breadcrumb a, .breadcrumb a {
        font-family: "Nunito", sans-serif;
        color: black;
        font-optical-sizing: auto;
        font-size: 12px;
        text-align: left;
        margin-top: auto;
        margin-bottom: auto;
        padding-top: auto;
        margin: auto;
        display: inline;
    }

.catnavparent2 {
    max-width: 1480px;
    margin: 10px auto 5px auto;
    display: none;
    width: calc(100% - 50px);
}

#emaillisttext {
    display: inline-block;
    padding-top: 1px;
    padding-bottom: 1px;
    height: 24px;
    font-size: 16px;
    width: 230px;
    border: 1px solid #e5e5e5;
    padding: 6px 12px;
}

.ebtn {
    display: inline-block;
    cursor: pointer;
    background-color: white;
    height: 24px;
    width: 37px;
    padding-top: 5px;
}

.topsNEW {
    max-width: 1480px;
    margin: auto;
    text-align: center;
}

.ccdiv {
    width: 60%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 35px;
}

.installment-details {
    width: 40%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 5px;
}

    .installment-details .installment-table label, .payment__outofstock .alert__body, .preliminary-info__confirmation label p {
        margin-bottom: 0
    }

.payment__outofstock .icon-warning {
    position: relative;
    bottom: 2px
}

.payment__discount-item-error {
    padding: 10px;
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
    margin-top: 10px;
    border-radius: 4px;
    text-align: left;
    font-size: 14px
}

    .payment__discount-item-error .icon-info {
        margin-top: -3px
    }

.showInstallmentABText .installment-details-text {
    display: flex
}

.total-price {
    width: 96%;
    height: 130px;
    margin-top: 0;
    border-radius: 4px;
    border: 2px solid #e2e7e9;
    background-color: #edf1f2;
}

.total-price {
    position: relative;
    width: 100%;
    padding: 0 1%;
    margin: 0px auto
}

.total-price__amount {
    display: block;
    color: #003CA6;
    font-size: 23px
}

/*   .total-price__amount:before {
        content: ":";
        font-size: 18px;
        color: #000;
        margin-right: 3px
    }*/

.total-price__row {
    text-align: center;
    font-size: 18px;
    margin-top: 23px;
    line-height: 32px
}

.total-price-ab {
    display: none;
    height: inherit
}

.installment-details-text {
    display: none;
    align-items: center;
    margin-bottom: 10px;
    color: #3597ec
}

    .installment-details-text span[class^=icon] {
        font-size: 11.5px
    }

.installment-details .installment-table {
    display: none;
    width: 100%;
    position: absolute;
    background-color: #fff;
    margin: 0 0 0px;
    border-collapse: separate;
    border: 2px solid #e2e7e9;
    border-radius: 4px
}

.installment-details .installment-table__cell {
    border-left: 2px solid #e2e7e9;
    border-top: 2px solid #e2e7e9;
}

    .installment-details .installment-table__cell:first-child {
        border-left: none
    }

.installment-details .installment-table__row:hover {
    cursor: pointer
}

.installment-details .installment-table__row.is-active {
    background-color: #edf1f2;
    color: #003CA6
}

.installment-details .installment-table__row td {
    padding: 10px;
    line-height: 100%;
    text-align: center
}

    .installment-details .installment-table__row td:first-child {
        text-align: left;
    }

.installment-details .installment-table__row th {
    padding: 6px 0;
    text-align: center
}

    .installment-details .installment-table__row th:first-child {
        padding-left: 0;
        padding-right: 0;
        text-align: center
    }

.installment-details thead .installment-table__cell {
    border-top: none
}

.installment-details thead .installment-table__row {
    background-color: #edf1f2
}

#sozlesmemetni {
    float: left;
    margin: 10px 10px 20px 10px;
}

#ccform {
    padding: 10px 0 30px 0px;
    FLOAT: left;
    width: 100%;
    height: 300px;
}

.odebutonCC {
    display: block;
    background-color: #003CA6;
    border-radius: 6px;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    line-height: 30px;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 1px;
    float: left;
    width: 300px;
    text-align: center;
}

    .odebutonCC:hover {
        color: white;
        background-color: #357730;
    }

.gorsellist {
    display: block;
    max-width: 1480px;
    margin: auto;
    overflow: overlay;
    height: auto;
}

    .gorsellist > a {
        padding: 10px 0px;
        display: inline-block;
        width: 25.4%;
        float: left;
    }

        .gorsellist > a:nth-child(2) {
            display: inline-block;
            padding: 10px 15px;
            width: 49.2%;
            float: left;
        }

        .gorsellist > a > img {
            width: 100%;
        }

@media (max-width: 992px) {
    .breadcrumb {
        margin-left: 10px;
        margin-bottom: 5px;
    }

    .gorsellist > a {
        padding: 5px 0px;
        display: inline-block;
        width: 100%;
        float: left;
    }

        .gorsellist > a:nth-child(2) {
            display: inline-block;
            padding: 5px 0px;
            width: 100%;
            float: left;
        }

    .odebutonCC {
        width: 100%;
    }

    .total-price__row {
        text-align: center;
        font-size: 18px;
        margin-top: 0;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .total-price {
        width: 96%;
        height: auto;
        margin-top: 0;
        border-radius: 4px;
        border: 2px solid white;
        background-color: white;
    }

    .total-price__amount {
        display: inline;
        color: #003CA6;
        font-size: 23px;
    }

        .total-price__amount:before {
            content: ":";
            font-size: 18px;
            color: #000;
            margin-right: 3px;
        }

    #ccform {
        height: auto;
    }

    .ccdiv {
        width: 100%;
        float: left;
        position: relative;
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .installment-details {
        width: 100%;
        float: left;
        position: relative;
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.prehCAT {
    background-color: #fffbf8;
    text-align: center;
    padding: 14px;
    border-bottom: 0.5px solid #e5e5e5;
    font-size: 17px;
    letter-spacing: 0.11px;
    display: block;
}

.encok2 {
    padding-left: 12px;
    font-size: 13px;
    margin-top: 60px;
    /* position: absolute;
    bottom: 8px;*/
}

.menu-search {
    float: left;
    margin-top: 0;
}

.smARA {
    z-index: 999999;
}

.ozm {
    height: 44px;
    line-height: normal !important;
    width: 117px;
}

.ozm1 {
    text-transform: none;
    position: absolute;
    left: 0;
    top: 6px;
    height: auto;
    width: auto;
}


.ozm2 {
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    position: absolute;
    left: 0;
    bottom: 4px;
    height: auto;
    width: auto;
}

.tumsonuclar {
    text-align: center;
}

    .tumsonuclar a, .tumsonuclar a:hover {
        display: inline-block;
        color: #fff;
        background-color: #003CA6;
        Text-align: center;
        padding: 10px 36px;
        margin: 2px 10px 10px;
        border-color: #003CA6;
        border-radius: 5px;
        font-size: 14px;
    }

.acResults {
    z-index: 9999;
    position: absolute;
    width: 100%;
    top: auto !important;
    left: auto !important;
    display: none;
    box-shadow: 0 1px 6px 0 rgba(2,2,2,.16);
    border-radius: 10px;
}

    .acResults ul li:hover {
        background-color: #f5f5f5;
    }

.urunrenkimgdiv {
    background-color: white;
    display: inline-block;
    font-size: 13px;
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    /* margin: 5px; */
    border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-webkit-radius: 50%;
    zoom: 1;
    margin-LEFT: 8px;
    padding: 0px;
    overflow: hidden;
    border: 0 solid #e5e5e5;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
}

    .urunrenkimgdiv img {
        max-height: 100%;
    }


.prehyaz2 {
    padding: 4px;
    font-size: 13px;
    text-align: center;
    background-color: #f4edab;
}

.ozelnotlar {
    padding: 5px 20px 5px 20px;
    margin: 5px 0 10px 0;
    border-radius: 5px;
    background-color: #edf1f2;
}

.upload_link {
    display: inline-block;
    padding: 8px;
    padding-left: 44px;
    background-image: url("../../../images/upload_image.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: center;
    cursor: pointer;
}

.aciklama {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    padding: 25px 25px;
    color: black;
    background-color: #edf1f2;
    border-radius: 6px;
    margin: 10px;
    font-size: 17px;
    width: 100%;
    max-width: 1480px;
    margin: 10px auto;
    box-sizing: border-box;
}

.ustaciklamabanner {
    background-image: url('30dakBanner.png');
    background-repeat: no-repeat;
    background-position-x: left;
    background-size: contain;
    position: relative;
    background-color: #d1e6ff;
    padding: 10px;
    border-radius: 10px;
    font-size: 25px;
    color: black;
    font-weight: bold;
    text-align: center;
}

.ustaciklamabannerSPOT {
    display: inline-block;
    background-color: #cd2e37;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 5px;
}

.ustaciklamabannerDETAY {
    display: inline-block;
    position: absolute;
    width: 200px;
    font-size: 14px;
    right: 0;
    top: 0;
    background-color: #ddebfe;
    padding: 10px;
    border-radius: 10px;
    font-weight: normal;
    color: black;
    margin: 10px;
}

#headerM {
    display: none;
}

@media (max-width: 992px) {
    .catnavparent2 {
        margin: 5px auto 5px auto;
        width: 100%;
    }

    #headerM {
        display: block;
        width: 100%;
        margin-top: 8px;
    }

    .menu-search {
        float: left;
        margin-top: 0;
        width: 100%;
        padding: 5px;
    }

    .ustaciklamabanner {
        background-position-x: left;
        background-position-y: center;
        background-size: 100px;
        padding-left: 100px;
        border-radius: 10px;
        font-size: 20px;
    }

    .ustaciklamabannerSPOT {
        display: inline-block;
        background-color: #cd2e37;
        padding: 6px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        margin: 5px;
    }

    .ustaciklamabannerDETAY {
        display: block;
        position: static;
        width: auto;
        font-size: 11px;
        background-color: transparent;
        padding: 0;
        border-radius: 10px;
        font-weight: normal;
        color: black;
        margin: 0;
    }
}


#aniheader {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 30px;
    overflow: hidden;
    background-color: #d1223b
}

    #aniheader img {
        max-width: 900px;
        width: 100%;
    }

.mesai {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -29px;
    font-size: 12px;
    display: none;
}

.mesai2 {
    display: block;
    margin: -4px 0 0 18px;
}

.h1header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.h1left-image, .h1right-image {
    height: 120px;
}

h1.iconh1, .h1iconh1 {
    font-size: 25px;
    margin: 10px;
    display: flex;
    text-align: left;
}

    h1.iconh1 > strong, .h1iconh1 > strong {
        flex-grow: 1;
        display: flex;
        align-items: center;
    }

@media (min-width: 992px) {


    .prehyaz2 {
        padding: 6px;
        font-size: 15px;
        text-align: center;
        background-color: #f4edab;
    }
}


@media (max-width: 992px) {
    h1.iconh1, .h1iconh1 {
        font-size: 17px;
        margin: 0 5px 7px 7px;
    }

    .h1left-image, .h1right-image {
        height: 80px;
    }
}



.blogbej {
    background-color: #f8f7f5;
    float: left;
}

#MainContent_blogrow {
    max-width: 1280px;
    margin: auto;
}

    #MainContent_blogrow > div {
        padding: 50px 15px;
        float: left;
    }

    #MainContent_blogrow a {
        line-height: 24px;
    }
        /*.rowblog b {
    display: block;
    height: 55px;
}*/

        #MainContent_blogrow a:hover {
            text-decoration: underline;
        }

    #MainContent_blogrow img {
        margin-bottom: 30px;
    }

.bloga {
    display: block;
    margin-bottom: 10px;
    padding: 15px;
    height: 100%;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
}

    /*    .bloga:hover {
        border: 1px solid #666;
        text-decoration: none;
        color: black;
    }*/

    .bloga h2 {
        padding: 10px 0;
        margin: 0;
        color: #0b2558;
        font-size: 16px;
        font-weight: bold;
        line-height: 25px;
        font-family: "Nunito", sans-serif;
        font-optical-sizing: auto;
    }

    .bloga img {
        display: inline-block;
        width: 100%;
        height: auto;
        /*   max-height: 200px;*/
    }

.blog1a {
    padding-right: 40px;
    width: calc(100% - 400px);
    float: left;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
}

    .blog1a img {
        width: 100%;
    }

.blog1b {
    width: 400px;
    float: left;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
}

    .blog1b > a {
        display: block;
        display: -ms-flexbox !important;
        display: flex !important;
        margin-bottom: 24px;
        font-family: "Nunito", sans-serif;
        font-optical-sizing: auto;
    }

        .blog1b > a > img {
            width: 55px;
            height: 31px;
            margin-right: 15px;
            display: inline-block;
            -ms-flex: 0 0 55px;
            flex: 0 0 55px;
        }


.rowblog {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .rowblog > div {
        -webkit-flex: 0 0 33.33%;
        -moz-flex: 0 0 33.33%;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        font-family: "Nunito", sans-serif;
        font-optical-sizing: auto;
    }

.aciklamaBLOG {
    padding: 25px 25px;
    color: black;
    background-color: white;
    border-radius: 6px;
    margin: 10px;
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    max-width: 1480px;
    margin: 10px auto;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    max-width: 750px;
}

    .aciklamaBLOG img {
        max-width: 100%;
        display: block;
        margin: auto;
    }

.uruncatlist-text {
    font-size: 14px;
    line-height: normal;
    color: #555;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    color: #555
}

.uruncatlist-title {
    margin-bottom: 7px;
    font-size: 2.2rem;
    color: #555
}

.odemediv p.uruncatlist-text-not {
    font-size: 12px;
    color: #555;
    margin-bottom: 20px;
}

.odemediv2 {
    display: flex;
    overflow: auto;
}

    .odemediv2 img {
        margin: 5px;
        margin-left: 0;
        max-width: 70px;
    }

.globalhead1 a, .globalhead2 a {
    font-size: 16px;
    color: black;
}

#sagblok5 {
    max-width: auto;
}

.catnavparent2_placeholder {
    height: 143.52px;
}

@media (max-width:992px) {
    .catnavparent2_placeholder {
        height: 94.8px;
    }

    .product__description {
        padding: 0;
    }

    .odemediv p.uruncatlist-text-not {
        display: none;
    }

    .uruncatlist-title {
        font-size: 14px;
        margin-top: 20px;
    }

    .rowblog > div {
        -webkit-flex: 0 0 100%;
        -moz-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .aciklama, .aciklamaBLOG {
        padding: 15px 15px;
    }

    .bloga {
        padding: 0;
    }

    .rowblog > div {
        width: 100%;
    }

    .blogbej {
        background-color: #fff;
        float: none;
    }

    #MainContent_blogrow img {
        margin-bottom: 30px;
        margin-top: 50px;
    }

    #MainContent_blogrow > div {
        padding: 0px 15px;
    }

    .blog1a {
        padding-right: 0;
        width: 100%;
        float: none;
    }

    .blog1b {
        width: 100%;
        float: none;
    }

        .blog1b > a {
            display: block !important;
            margin-bottom: 0;
        }

            .blog1b > a > img {
                width: 100%;
                height: auto;
                margin-right: 0;
                display: inline-block;
                -ms-flex: none;
                flex: none;
            }

            .blog1b > a > span {
                font-size: 16px;
            }
}

.paylasdiv a {
    height: 45px;
    width: 45px;
    padding: 10px;
    float: left;
    text-align: center;
    display: inline-block;
    margin: 0 5px;
    border-radius: 25px;
}

    .paylasdiv a img {
        height: 24px;
    }

.altgorseller {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 10px auto;
    height: auto;
    white-space: nowrap;
    padding-left: 5%;
    padding-right: 5%;
}

    .altgorseller a {
        flex: 0 0 auto;
        width: calc(18vw - 18px);
        height: calc(18vw - 18px);
        margin: 8px;
        padding: 15px;
        background-color: #cc958f;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        white-space: normal;
    }




        .altgorseller a span {
            color: white;
            font-size: 1vw;
            width: 100%;
            user-select: none;
            font-family: "Nunito", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
            line-height: 1.3vw;
        }

            .altgorseller a span u {
                font-weight: bold;
                text-decoration: none;
                position: relative;
                display: inline;
                background-image: linear-gradient(#fce335, #fce335);
                background-repeat: no-repeat;
                background-size: 100% 2px;
                background-position: left 100%; /* Metinden biraz daha aşağı konumlandır */
            }

        .altgorseller a img {
            width: 100%; /* Resim genişliği otomatik ayarlanacak */
            height: auto; /* Resim yüksekliği otomatik ayarlanacak */
            object-fit: cover; /* Resmin kare kalmak üzere kırpılması */
        }

.headernews {
    display: block;
    background-color: #fbecd9;
    padding: 5px 5px;
    text-align: center;
    color: white;
    font-size: 1.3em;
    height: 30px;
}

    .headernews p {
        margin: 0;
    }

    .headernews ul {
        padding: 0;
        margin: 0;
    }

        .headernews ul li {
            font-family: "Nunito", sans-serif;
            font-optical-sizing: auto;
            padding: 0;
            margin: 0;
            list-style: none;
            font-size: 15px;
            line-height: 20px;
            font-weight: 300 !important;
            color: black;
            display: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .headernews ul li a {
                font-family: "Nunito", sans-serif;
                font-optical-sizing: auto;
                color: white;
                font-size: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 40px;
                overflow-y: hidden;
                overflow: hidden;
                text-overflow: ellipsis;
            }

.m20 {
    margin-top: 30px;
}

.m30 {
    margin-top: 30px;
}

.m40 {
    margin-top: 30px;
}

.m50 {
    margin-top: 30px;
}

.m60 {
    margin-top: 30px;
}

.m70 {
    margin-top: 30px;
}

.tumu {
    font-size: 13px;
    border: 1px solid rgb(229 231 235 / 1);
    padding: 5px 15px;
    border-radius: 15px;
    float: right;
    color: black;
}

    .tumu:after {
        content: "\f105 ";
        -moz-osx-font-smoothing: grayscale;
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        margin-left: 8px;
        font-size: 16px;
    }

.mobillogo_sepet1 {
    display: none;
}

.analogoM {
    display: none;
}

.mobillogo_sepet {
    width: 186px;
    max-width: 100%;
    margin-top: 7px;
}

@media (max-width: 992px) {
    .analogoM {
        display: block;
        text-align: center;
        width: 100%;
    }

    .mobillogo_sepet1 {
        display: inline-block;
        width: 186px;
    }

    .analogoA {
        display: inline-block;
    }

    .analogoIMG {
        display: none;
    }

    .globalheadsub {
        text-align: center;
    }

    #topicons {
        display: none;
    }

    .encok2 {
        display: none;
    }

    .headernews ul li {
        font-size: 13px;
    }

        .headernews ul li a {
            color: white;
            font-size: 13px;
            height: 44px;
            overflow-y: hidden;
        }
}

@media (max-width: 767px) {
    .altgorseller {
        max-width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }

        .altgorseller a {
            width: 35.33vw;
            height: 35.33vw;
            margin: 2px;
            padding: 5px;
        }

            .altgorseller a span {
                font-size: 12px;
                line-height: 14px;
            }
}

[data-core-button] {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 10px 32px;
    background-color: #3ca735;
    color: #fff;
    border: 1px solid #3ca735;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-decoration: none;
    overflow: hidden;
}

    [data-core-button] [data-core-button-inner] {
        display: inline-flex;
        align-items: center;
    }

.ivr-banner__btn-wrapper [data-core-button-children] {
    white-space: nowrap;
}

.ivr-banner__icon [data-core-icomoon] {
    font-size: 32px;
    color: #171717;
    font-family: 'Nunito Sans', sans-serif;
}

.sales-inform__list {
    padding: 0;
    list-style: none;
    float: right;
    border-radius: 6px;
    height: 26px;
    line-height: 26px;
    width: 100%;
    margin: 5px 0 10px;
    margin-top: 10px;
    overflow: hidden;
}

.sales-inform__list-item:first-child {
    padding-left: 1px !important;
}

.sales-inform__list-item-icon {
    padding: 2px 3px;
    margin-right: 6px;
    font-size: 18px;
}

.sales-inform__list-item {
    font-size: 15px;
    padding: 0 10px;
    display: inline-block;
    position: relative;
    bottom: 1px;
}

.product__webtoapp-container {
    border-radius: 5px;
    background-color: #003CA6;
    padding: 15px 10px 20px;
    margin-top: 10px;
    display: inline-flex;
    display: -webkit-inline-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    width: 100%;
    padding: 7px 15px;
}

.product__webtoapp-banner, .product__webtoapp-text {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    font-size: 14px;
}

.product__webtoapp-banner {
    color: #3ca735;
    padding: 7.5px 0;
}

    .product__webtoapp-banner .icon {
        margin-top: 2px;
        min-width: unset;
        margin-right: 6px;
        display: inline-block;
        vertical-align: middle;
        -webkit-font-smoothing: antialiased;
    }

.product__legal-info-message {
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    color: #555;
    display: inline-flex;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.product__legal-info-message--icon {
    font-size: 16px;
    margin: 1px 5px 0 0;
    margin-right: 8px;
}

.icon-circle-info .path1:before {
    content: "\e90a";
    color: rgb(255, 255, 255);
}

.icon-circle-info .path2:before {
    content: "\e90b";
    margin-left: -1em;
    color: rgb(85, 85, 85);
}

.infosvg {
    width: 30px;
}

.benzerler {
    margin-top: 30px;
}

.discount-orange, .discount-orange:hover {
    background-color: #e37c33;
    color: #edf1f2;
    font-size: 16px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 6px;
    display: block;
    height: 40px;
    padding: 9px 32px 0 33px;
}

.pre-footer-col {
    float: left;
    padding: 0 10px;
    width: 50%;
    padding-bottom: 22px;
}



.indirimoran {
    background-color: #e64e41;
    border-radius: 4px;
    padding: 2px 5px;
    color: #fff;
    font-size: 16px;
    margin-right: 3px;
    min-width: 30px;
}

.indirimoranBIG {
    background-color: #e64e41;
    border-radius: 4px;
    padding: 4px 9px;
    color: #fff;
    font-size: 25px;
    margin-right: 10px;
    min-width: 30px;
}

.fiyatanadivMOB {
    display: none;
}

#slidercol {
    margin-bottom: 25px;
    padding: 0;
    text-align: center;
}

    #slidercol > div {
        margin: auto;
        max-width: 500px;
        position: relative;
    }

.green.btn {
    background-color: #003CA6;
}

.mahelleon, input.mahelleon, textarea.mahelleon {
    background-color: #003CA6;
    color: white;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.mahallediv1 + .mahelleon {
    border-color: #003CA6;
    background-image: URL('../../../tc-images-product-page/destination.svg');
}

.acResults4 {
    margin-left: 0px;
    border: 2px solid #003ca6;
    border-top:0;
}

    .acResults4 ul li {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 32px;
        padding-right: 12px;
        list-style-type: none;
        text-align: left;
        font-size: 14px;
        color: #292929;
        text-transform: capitalize;
        font-weight: 400 !important;
        height: auto;
        line-height: 21px;
        border-bottom: 1px solid rgba(17, 17, 17, 0.05);
        cursor: pointer;
        background-image: url(../../../tc-images-product-page/destination-blue.svg);
        background-repeat: no-repeat;
        background-size: 20px;
        background-position:8px 12px;
    }

.district-search__all-info-title {
    font-size: 14px;
    line-height: 22px;
    color: #171717;
    margin: 0;
    padding: 0px 15px 0;
}

.cancelpng {
    width: 26px;
    z-index: 1;
    position: absolute;
    right: 10px;
    top: 12px
}

#MainContent_mahalle {
    padding-right: 5px;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    font-family: 'Inter', sans-serif;
}

#mahalleparent.mahelleon .mahallediv1 {
    background-color: #003CA6;
    color: #ffffff;
    position: relative;
    background-image: url(../icons2020/place2.png);
    background-repeat: no-repeat;
    background-position-x: 8px;
    background-position-y: 13px;
    background-size: 20px;
}

.acInput4 {
    width: calc(100% - 25px);
}

.district-dropdown__close {
    position: absolute;
    right: 7px;
    padding: 5px;
    top: 7px;
    font-size: 10px;
    z-index: 2;
}

.gonderip_pop_head {
    display: none;
}

.urunmain {
    padding: 0 0 10px 0;
    /* padding-top: 100px; */
    width: 100%;
    margin: auto;
    /* border-top: 1px solid #eee; */
    max-width: 1480px;
}

.fipriceleft {
    width: auto;
    font-size: 20px;
    color: #999;
    position: relative;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
}

.fipriceright {
    font-size: 13px;
    font-family: 'Nunito', Arial, sans-serif;
    width: auto;
    color: #999;
    position: relative;
    white-space: nowrap;
    line-height: 15px;
    TEXT-ALIGN: left;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width:1400px) {
    .indirimoran {
        padding: 2px 1px;
        font-size: 12px;
        min-width: 26px;
    }

    .fipriceleft {
        font-size: 14px;
    }

    .fipriceright {
        font-size: 9px;
    }

    .priceleft {
        font-size: 18px;
    }

    .priceright {
        font-size: 9px;
    }
}
@media (min-width:992px) {
    .acResults4 {
      position:absolute;
    }
}
    @media (max-width:992px) {

        .urunmain {
            padding: 0;
            border-top: 1px solid #eee;
        }

        #sonucyok {
            margin-left: 0;
            width: 100%;
            position: static;
        }

        .acResults4 {
            z-index: 15999;
            margin-top: 0;
            max-width: 100%;
            margin-left: 0;
            max-height: 600px;
            font-size: 16px;
            list-style-type: none;
            background: #FFF;
            border: none;
            border-top: none;
            overflow-x: hidden;
            overflow-y: scroll;
        }

        body.scroll-lock {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        .urunbolgesec_on {
            margin: 0;
            position: fixed;
            top: auto;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow-y: auto;
            background: rgb(0,0,0,.6);
            padding: 15px 10px 0;
            z-index: 112;
        }

            .urunbolgesec_on .gonderip_pop_head {
                display: block;
                font-family: "Nunito";
                font-size: 16px;
                min-height: 22px;
                color: #171717;
                margin: 0;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                text-align: center;
            }

            .urunbolgesec_on > div {
                margin: 0;
                position: fixed;
                top: auto;
                bottom: 0;
                left: 0;
                width: 100%;
                height: calc(100% - 60px);
                background: #fff;
                border-radius: 10px 10px 0 0;
                padding: 15px 10px 0;
                flex-direction: column;
                z-index: 113;
                padding: 10px !important;
            }

            .urunbolgesec_on .icon-down-arrow-light {
                display: none;
            }

            .urunbolgesec_on .acInput4 {
                width: 100%;
            }

        #slidercol {
            margin-bottom: 2px;
            padding: 0;
            text-align: center;
        }

        .product-page h1 {
            font-size: 15px;
            padding-bottom: 0;
            margin-top: 5px;
        }
        /*  #mahalleparent {
            padding: 0;
        }*/
        .ucretsizteslimat {
            font-size: 12px;
        }

        .fiyatindirimsiz .priceleft {
            color: #999;
            font-size: 12px;
        }

        .indirimoranBIGmobil {
            background-color: #e64e41;
            border-radius: 4px;
            padding: 2px 6px;
            color: #fff;
            font-size: 16px;
            min-width: 30px;
            display: flex;
            align-items: center; /* Dikey ortalama */
        }

        .fiyatanadivMOB div {
            text-align: left;
        }

        .fiyatanadivMOB > div {
            padding-left: 10px;
        }

        .fiyatanadivMOB {
            display: flex;
            -webkit-flex: 0 0 50%;
            -moz-flex: 0 0 50%;
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
        }

        .fiyatanadiv {
            display: none;
        }

        .sepetbtn_container {
            position: fixed;
            align-items: center;
            left: 0;
            right: 0;
            bottom: var(--vv-offset);
            padding: 5px;
            z-index: 9999;
            width: 100%;
            display: flex;
            background-color: white;
            box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, .06);
        }

        #gonderbttn {
            margin-top: 0;
            margin-bottom: 0;
            -webkit-flex: 0 0 50%;
            -moz-flex: 0 0 50%;
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            font-size: 17px;
            height: 46px;
            line-height: 30px;
            padding: 6px 16px;
        }

        .priceleft {
            font-size: 17px;
        }

        .fipriceleft {
            font-size: 18px;
        }

        .indirimoran {
            font-size: 12px;
            padding: 2px 2px;
        }

        .pi-price {
            font-size: 15px;
        }

        .pre-footer-col {
            width: 100%;
            padding-bottom: 10px;
            padding-left: 30px;
        }

        .sales-inform__list-item {
            font-size: 9px;
            padding: 0 4px;
            display: inline-block;
            position: relative;
            bottom: 1px;
        }
    }

    .ecommerce h1 {
        text-align: left;
    }

    @media (min-width: 992px) {
        .pre-footer-col {
            width: 25%;
        }

        .ecommerce h1 {
            font-size: 27px;
            margin: 10px auto 0;
            display: block;
            position: static;
            max-width: 1480px;
            width: 100%;
        }
    }

    @media (max-width: 992px) {


        .ecommerce h1 {
            padding-left: 10px;
        }
    }

    #topicons {
        font-size: 13px;
    }

    /*KAMPANYA*/

    #vl-header-banner {
        width: 100%;
        position: relative;
        user-select: none;
        font-size: 16px;
        background-color: #fbf0ee;
        height: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15rem;
    }

        #vl-header-banner .vl-headbanner-content {
            color: #4a2fb4;
            display: flex;
            height: 100%;
            text-align: center;
            align-items: center;
            font-weight: 800;
        }

        #vl-header-banner .vl-headbanner-btn {
            background-color: #4a2fb4;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 400;
        }

        #vl-header-banner .vl-banner-countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5em;
            gap: 0.5em;
            color: #4a2fb4;
            font-weight: bold;
        }

            #vl-header-banner .vl-banner-countdown div {
                display: flex;
                flex-wrap: wrap;
                flex-direction: column;
                align-content: center;
                text-align: center;
                font-size: 15px;
                width: 50px;
            }

                #vl-header-banner .vl-banner-countdown div span:first-child {
                    padding: 3px 5px;
                    background-color: #e9effd;
                    width: 100%;
                    border-radius: 5px;
                    border: 1px #6e52d9 dashed;
                }

                #vl-header-banner .vl-banner-countdown div span:last-child {
                    font-size: 12px;
                }

        #vl-header-banner .vl-headbanner-btn {
            background-color: #4a2fb4;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
        }

    @media only screen and (max-width: 768px) {
        #vl-header-banner {
            height: 85px;
            justify-content: space-around;
            gap: unset;
        }

            #vl-header-banner .vl-banner-countdown {
                font-size: 6.3vw;
                gap: 0.5em;
            }

                #vl-header-banner .vl-banner-countdown div span:first-child {
                    width: 45px;
                }

            #vl-header-banner .vl-headbanner-content {
                width: 30%;
                font-size: smaller;
            }

            #vl-header-banner .vl-banner-countdown div {
                font-size: 15px;
                width: 40px;
                font-size: small;
            }

            #vl-header-banner .vl-headbanner-btn {
                display: none;
            }
    }
    /**
 * Swiper 11.1.14
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 12, 2024
 */

    @font-face {
        font-family: swiper-icons;
        src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
        font-weight: 400;
        font-style: normal
    }

    :root {
        --swiper-theme-color: #007aff
    }

    :host {
        position: relative;
        display: block;
        margin-left: auto;
        margin-right: auto;
        z-index: 1
    }

    .swiper {
        margin-left: auto;
        margin-right: auto;
        position: relative;
        overflow: hidden;
        list-style: none;
        padding: 0;
        z-index: 1;
        display: block
    }

    .swiper-vertical > .swiper-wrapper {
        flex-direction: column
    }

    .swiper-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: flex;
        transition-property: transform;
        transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
        box-sizing: content-box
    }

    .swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
        transform: translate3d(0px,0,0)
    }

    .swiper-horizontal {
        touch-action: pan-y
    }

    .swiper-vertical {
        touch-action: pan-x
    }

    .swiper-slide {
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        position: relative;
        transition-property: transform;
        display: block
    }

    .swiper-slide-invisible-blank {
        visibility: hidden
    }

    .swiper-autoheight, .swiper-autoheight .swiper-slide {
        height: auto
    }

        .swiper-autoheight .swiper-wrapper {
            align-items: flex-start;
            transition-property: transform,height
        }

    .swiper-backface-hidden .swiper-slide {
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper-3d.swiper-css-mode .swiper-wrapper {
        perspective: 1200px
    }

    .swiper-3d .swiper-wrapper {
        transform-style: preserve-3d
    }

    .swiper-3d {
        perspective: 1200px
    }

        .swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
            transform-style: preserve-3d
        }

    .swiper-css-mode > .swiper-wrapper {
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none
    }

        .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
            display: none
        }

        .swiper-css-mode > .swiper-wrapper > .swiper-slide {
            scroll-snap-align: start start
        }

    .swiper-css-mode.swiper-horizontal > .swiper-wrapper {
        scroll-snap-type: x mandatory
    }

    .swiper-css-mode.swiper-vertical > .swiper-wrapper {
        scroll-snap-type: y mandatory
    }

    .swiper-css-mode.swiper-free-mode > .swiper-wrapper {
        scroll-snap-type: none
    }

        .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
            scroll-snap-align: none
        }

    .swiper-css-mode.swiper-centered > .swiper-wrapper::before {
        content: '';
        flex-shrink: 0;
        order: 9999
    }

    .swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: center center;
        scroll-snap-stop: always
    }

    .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
        margin-inline-start: var(--swiper-centered-offset-before)
    }

    .swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
        height: 100%;
        min-height: 1px;
        width: var(--swiper-centered-offset-after)
    }

    .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
        margin-block-start: var(--swiper-centered-offset-before)
    }

    .swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
        width: 100%;
        min-width: 1px;
        height: var(--swiper-centered-offset-after)
    }

    .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10
    }

    .swiper-3d .swiper-slide-shadow {
        background: rgba(0,0,0,.15)
    }

    .swiper-3d .swiper-slide-shadow-left {
        background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-right {
        background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-top {
        background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-bottom {
        background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-lazy-preloader {
        width: 42px;
        height: 42px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -21px;
        margin-top: -21px;
        z-index: 10;
        transform-origin: 50%;
        box-sizing: border-box;
        border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
        border-radius: 50%;
        border-top-color: transparent
    }

    .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
        animation: swiper-preloader-spin 1s infinite linear
    }

    .swiper-lazy-preloader-white {
        --swiper-preloader-color: #fff
    }

    .swiper-lazy-preloader-black {
        --swiper-preloader-color: #000
    }

    @keyframes swiper-preloader-spin {
        0% {
            transform: rotate(0deg)
        }

        100% {
            transform: rotate(360deg)
        }
    }

    .swiper-virtual .swiper-slide {
        -webkit-backface-visibility: hidden;
        transform: translateZ(0)
    }

    .swiper-virtual.swiper-css-mode .swiper-wrapper::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        pointer-events: none
    }

    .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
        height: 1px;
        width: var(--swiper-virtual-size)
    }

    .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
        width: 1px;
        height: var(--swiper-virtual-size)
    }

    :root {
        --swiper-navigation-size: 44px
    }

    .swiper-button-next, .swiper-button-prev {
        position: absolute;
        top: var(--swiper-navigation-top-offset,50%);
        width: calc(var(--swiper-navigation-size)/ 44 * 27);
        height: var(--swiper-navigation-size);
        margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color,var(--swiper-theme-color))
    }

        .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
            opacity: .35;
            cursor: auto;
            pointer-events: none
        }

        .swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
            opacity: 0;
            cursor: auto;
            pointer-events: none
        }

    .swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
        display: none !important
    }

    .swiper-button-next svg, .swiper-button-prev svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform-origin: center
    }

    .swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
        transform: rotate(180deg)
    }

    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset,10px);
        right: auto
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: var(--swiper-navigation-sides-offset,10px);
        left: auto
    }

    .swiper-button-lock {
        display: none
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-family: swiper-icons;
        font-size: var(--swiper-navigation-size);
        text-transform: none !important;
        letter-spacing: 0;
        font-variant: initial;
        line-height: 1
    }

    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        content: 'prev'
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: var(--swiper-navigation-sides-offset,10px);
        left: auto
    }

        .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
            content: 'next'
        }

    .swiper-pagination {
        position: absolute;
        text-align: center;
        transition: .3s opacity;
        transform: translate3d(0,0,0);
        z-index: 10
    }

        .swiper-pagination.swiper-pagination-hidden {
            opacity: 0
        }

        .swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
            display: none !important
        }

    .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: var(--swiper-pagination-bottom,8px);
        top: var(--swiper-pagination-top,auto);
        left: 0;
        width: 100%
    }

    .swiper-pagination-bullets-dynamic {
        overflow: hidden;
        font-size: 0
    }

        .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            transform: scale(.33);
            position: relative
        }

        .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
            transform: scale(1)
        }

        .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
            transform: scale(1)
        }

        .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
            transform: scale(.66)
        }

        .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
            transform: scale(.33)
        }

        .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
            transform: scale(.66)
        }

        .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
            transform: scale(.33)
        }

    .swiper-pagination-bullet {
        width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
        height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
        display: inline-block;
        border-radius: var(--swiper-pagination-bullet-border-radius,50%);
        background: var(--swiper-pagination-bullet-inactive-color,#000);
        opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
    }

    button.swiper-pagination-bullet {
        border: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        -webkit-appearance: none;
        appearance: none
    }

    .swiper-pagination-clickable .swiper-pagination-bullet {
        cursor: pointer
    }

    .swiper-pagination-bullet:only-child {
        display: none !important
    }

    .swiper-pagination-bullet-active {
        opacity: var(--swiper-pagination-bullet-opacity, 1);
        background: var(--swiper-pagination-color,var(--swiper-theme-color))
    }

    .swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
        right: var(--swiper-pagination-right,8px);
        left: var(--swiper-pagination-left,auto);
        top: 50%;
        transform: translate3d(0px,-50%,0)
    }

        .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
            margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
            display: block
        }

        .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
            top: 50%;
            transform: translateY(-50%);
            width: 8px
        }

            .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
                display: inline-block;
                transition: .2s transform,.2s top
            }

    .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
    }

    .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap
    }

        .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            transition: .2s transform,.2s left
        }

    .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transition: .2s transform,.2s right
    }

    .swiper-pagination-fraction {
        color: var(--swiper-pagination-fraction-color,inherit)
    }

    .swiper-pagination-progressbar {
        background: var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));
        position: absolute
    }

        .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
            background: var(--swiper-pagination-color,var(--swiper-theme-color));
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            transform: scale(0);
            transform-origin: left top
        }

    .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        transform-origin: right top
    }

    .swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
        width: 100%;
        height: var(--swiper-pagination-progressbar-size,4px);
        left: 0;
        top: 0
    }

        .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
            width: var(--swiper-pagination-progressbar-size,4px);
            height: 100%;
            left: 0;
            top: 0
        }

    .swiper-pagination-lock {
        display: none
    }

    .swiper-scrollbar {
        border-radius: var(--swiper-scrollbar-border-radius,10px);
        position: relative;
        touch-action: none;
        background: var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))
    }

        .swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
            display: none !important
        }

        .swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
            position: absolute;
            left: var(--swiper-scrollbar-sides-offset,1%);
            bottom: var(--swiper-scrollbar-bottom,4px);
            top: var(--swiper-scrollbar-top,auto);
            z-index: 50;
            height: var(--swiper-scrollbar-size,4px);
            width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))
        }

        .swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
            position: absolute;
            left: var(--swiper-scrollbar-left,auto);
            right: var(--swiper-scrollbar-right,4px);
            top: var(--swiper-scrollbar-sides-offset,1%);
            z-index: 50;
            width: var(--swiper-scrollbar-size,4px);
            height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))
        }

    .swiper-scrollbar-drag {
        height: 100%;
        width: 100%;
        position: relative;
        background: var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));
        border-radius: var(--swiper-scrollbar-border-radius,10px);
        left: 0;
        top: 0
    }

    .swiper-scrollbar-cursor-drag {
        cursor: move
    }

    .swiper-scrollbar-lock {
        display: none
    }

    .swiper-zoom-container {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center
    }

        .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain
        }

    .swiper-slide-zoomed {
        cursor: move;
        touch-action: none
    }

    .swiper .swiper-notification {
        position: absolute;
        left: 0;
        top: 0;
        pointer-events: none;
        opacity: 0;
        z-index: -1000
    }

    .swiper-free-mode > .swiper-wrapper {
        transition-timing-function: ease-out;
        margin: 0 auto
    }

    .swiper-grid > .swiper-wrapper {
        flex-wrap: wrap
    }

    .swiper-grid-column > .swiper-wrapper {
        flex-wrap: wrap;
        flex-direction: column
    }

    .swiper-fade.swiper-free-mode .swiper-slide {
        transition-timing-function: ease-out
    }

    .swiper-fade .swiper-slide {
        pointer-events: none;
        transition-property: opacity
    }

        .swiper-fade .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-fade .swiper-slide-active {
        pointer-events: auto
    }

        .swiper-fade .swiper-slide-active .swiper-slide-active {
            pointer-events: auto
        }

    .swiper.swiper-cube {
        overflow: visible
    }

    .swiper-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        transform-origin: 0 0;
        width: 100%;
        height: 100%
    }

        .swiper-cube .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-cube.swiper-rtl .swiper-slide {
        transform-origin: 100% 0
    }

    .swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
        pointer-events: auto;
        visibility: visible
    }

    .swiper-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        opacity: .6;
        z-index: 0
    }

        .swiper-cube .swiper-cube-shadow:before {
            content: '';
            background: #000;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            filter: blur(50px)
        }

    .swiper-cube .swiper-slide-next + .swiper-slide {
        pointer-events: auto;
        visibility: visible
    }

    .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper.swiper-flip {
        overflow: visible
    }

    .swiper-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1
    }

        .swiper-flip .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper-creative .swiper-slide {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden;
        transition-property: transform,opacity,height
    }

    .swiper.swiper-cards {
        overflow: visible
    }

    .swiper-cards .swiper-slide {
        transform-origin: center bottom;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden
    }

    #vl-info-banner {
        width: 100%;
        position: relative;
        user-select: none;
        font-size: 16px;
        background-color: #fbf0ee;
        height: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5rem;
        overflow: hidden;
    }

    .swiper-container {
        width: 100%;
        height: 65px;
    }

    .swiper-slide {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    #vl-info-banner .vl-headbanner-content {
        color: #4a2fb4;
        text-align: center;
        font-weight: 800;
    }

    #vl-info-banner .vl-headbanner-detail {
        color: #4a2fb4;
        font-size: 15px;
        text-align: center;
    }

    #vl-info-banner .vl-headbanner-btn {
        background-color: #4a2fb4;
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 400;
        cursor: pointer;
    }


    @media only screen and (max-width: 768px) {
        /* .urunresimleri {
            border: 1px solid #e2e7e9;
            margin: 5px;
        }*/

        #vl-info-banner {
            height: 85px;
            flex-direction: column;
            gap: unset;
            padding: 10px 0;
        }

            #vl-info-banner .vl-headbanner-detail {
                font-size: 11px;
                font-weight: 700;
            }

            #vl-info-banner .vl-headbanner-btn {
                display: none;
            }
    }
    /*KAMPANYA*/


    .mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .w-full {
        width: 100%;
    }

    .max-w-screen-desktop {
        max-width: 1480px;
    }

    .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hidden {
        display: none;
    }

    .grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gap-2 {
        gap: 0.5rem;
    }

    .laptop\:grid {
        display: grid;
    }

    .relative {
        position: relative;
    }

    .anaslide {
        grid-column: span 2 / span 2;
    }

    .overflow-hidden {
        overflow: hidden;
    }

    .flex {
        display: flex;
    }

    .laptop\:-ml-2 {
        margin-left: -0.5rem;
    }

    .min-w-0 {
        min-width: 0;
    }

    .shrink-0 {
        flex-shrink: 0;
    }

    .grow-0 {
        flex-grow: 0;
    }

    .basis-full {
        flex-basis: 100%;
    }

    .laptop\:pl-2 {
        padding-left: 0.5rem;
    }

    .aspect-\[20\/13\] {
        aspect-ratio: 20 / 13;
    }

    .rounded-4 {
        border-radius: 0.25rem;
    }

    .bg-background-neutral {
        background-color: rgb(243, 244, 246);
    }

    .object-cover {
        object-fit: cover;
    }

    .object-left-top {
        object-position: left top;
    }

    .absolute {
        position: absolute;
    }

    .bottom-8 {
        bottom: 2rem;
    }

    .left-8 {
        left: 2rem;
    }

    .size-2 {
        width: 0.5rem;
        height: 0.5rem;
    }

    .rounded-full {
        border-radius: 9999px;
    }

    .bg-background-screen {
        background-color: rgb(255, 255, 255);
    }

    .opacity-50 {
        opacity: 0.5;
    }

    .flex-col {
        flex-direction: column;
    }

    .anaiki {
        gap: 0.5rem;
    }

    .relative {
        position: relative;
    }

    .flex-auto {
        flex: 1 1 auto;
    }

    .overflow-hidden {
        overflow: hidden;
    }

    .rounded-4 {
        border-radius: 0.25rem;
    }

    .bg-background-neutral {
        background-color: rgb(243, 244, 246);
    }

    .absolute {
        position: absolute;
    }

    .inset-0 {
        inset: 0;
    }

    .h-full {
        height: 100%;
    }

    .w-full {
        width: 100%;
    }

    .pointer-events-none {
        pointer-events: none;
    }

    .bg-background-black\/5 {
        /*        background-color: rgba(28, 31, 34, 0.05);
*/
    }

    .absoluteV {
        position: absolute;
    }

    .vitrinimg {
        display: none;
    }

    .vitrin-1 {
        display: block;
        width: 100%;
    }



    @media (max-width: 992px) {
        .absoluteV {
            position: static;
        }

        .anaslide {
            grid-column: span 3 / span 3;
        }

        .anaiki {
            gap: 0.5rem;
            grid-column: span 3 / span 3;
        }
    }



    .listing-top-widget-wrapper {
        border: 1px solid #fbecd9;
        background-color: #fbecd9;
        height: 58px;
    }

    /*@media (min-width: 768px) {
    .listing-top-widget-wrapper {
        height: 82px;
        border-radius: 6px;
    }
}*/

    .listing-top-widget-right {
        flex-shrink: 0;
        flex-grow: 0;
        flex-basis: 336px;
        border-radius: 6px;
        padding: 10.5px 12px;
        margin: 16px 10px 0;
    }

    .ecommerce h1.anah1 {
        font-size: 26px;
        text-align: center;
    }

    .sevgililericon {
        position: relative;
        width: 40px;
        padding: 3px 4px;
        border-radius: 5px 0 5px 0;
        background-color: #e64e41;
        display: inline-Block;
        color: white;
        line-height: 14px;
        font-size: 12px;
        font-weight: 700 !important;
        margin: auto;
        margin-bottom: 0;
        display: inline-block;
    }

    .sevgililericon2 {
        background-color: darkorange;
    }

    .sevgililericonDIV1 {
        display: inline-flex;
        align-items: baseline;
        font-weight: 700 !important;
    }

        .sevgililericonDIV1 img {
            width: 12px;
            flex: 1;
            margin-right: 4px;
        }

        .sevgililericonDIV1 span {
            flex: 1;
            font-weight: 700 !important;
            font-size: 16px;
        }

    .gundiscount {
        border-radius: 20px;
        font-size: 11px;
        padding: 2px 5px;
        background-color: seagreen;
    }

    .gunozelici {
        border-radius: 4px;
        background-color: #edf1f2;
        margin-bottom: 5px;
        font-size: 1em;
        text-align: center;
        padding: 7px 2px;
        position: relative;
        margin-right: 6px;
        height: 100%;
        background-color: #003CA6;
        color: #fff;
        position: relative;
        transition: all .15s !important;
    }

.gunozelyazi {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: bold !important;
    color: black;
    display: block;
    margin-top: 6px;
}

.ogz2 {
    font-size: 13px;
    font-weight: 500 !important;
}

@media (max-width: 767px) {
    .gunozelici2 {
        padding: 5px !important;
    }
    .gunozelyazi {
            font-size: 13px;
            color: black;
            display: block;
            /* font-weight: 700 !important; */
            line-height: 15px;
            margin-top: 2px;
        }
    .ogz2 {
        font-size: 12px;
        font-weight: 500 !important;
    }
        .ecommerce h1.anah1 {
            font-size: 19px;
        }

        .listing-top-widget-right {
            height: auto;
        }
    }

    @media (min-width: 768px) {
        .listing-top-widget-right {
            display: block;
            margin: 0 0 0 8px;
        }
    }

    @media (min-width: 1200px) {
        .listing-top-widget-right {
            flex-basis: 513px;
        }
    }

    .listing-top-badge__wrapper {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: space-between;
        border-radius: 6px;
    }

    .listing-top-badge__badge-item {
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .listing-top-badge__icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 50%;
        margin-bottom: 2px;
        background-color: #fff;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .08);
        width: 32px;
        height: 32px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 34px;
    }

    .bg-101 {
        background-image: url('../../../images/b_ico_1.png');
    }

    .bg-102 {
        background-image: url('../../../images/b_ico_2.png');
    }

    .bg-103 {
        background-image: url('../../../images/b_ico_3.png');
    }

    .listing-top-badge__icon-wrapper [data-core-icomoon] {
        font-size: 16px;
    }

    .listing-top-badge__badge-item [data-cs-typography] {
        font-size: 13px;
        line-height: 17px;
        text-align: left;
    }

    .listing-top-badge__wrapper .listing-top-badge__badge-item {
        flex-basis: 33%;
    }
    /*.listing-top-badge__wrapper .listing-top-badge__badge-item:first-child {
    flex-basis: 40%;
}
 */
    .listing-top-badge__badge-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .listing-top-badge__icon-wrapper {
        margin-bottom: 0;
        margin-right: 8px;
        width: 46px;
        height: 46px;
    }



        .listing-top-badge__icon-wrapper [data-core-icomoon] {
            font-size: 22px;
        }

    .header .menu > ul > li .menu-subs.menu-mega > .list-item-tumu > ul > li > a {
        color: rgb(0, 61, 166);
    }

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        color: #fff;
        background-color: #41913a;
        border-color: rgba(0, 0, 0, 0);
        border: 1px solid #41913a;
    }

    .modal {
        z-index: 99999999;
    }

    .filtrespan, .filtlist > span {
        display: inline-block;
        width: 100%;
        padding-bottom: 5px;
    }

    .filtlist [type=checkbox] + label {
        line-height: 22px;
        /* padding: 0; */
        margin: 0;
        padding-left: 35px;
        font-size: 14px;
        color: black;
        display: block;
    }

    .kapatitle {
        font-weight: bold !important;
        font-family: "Nunito", sans-serif;
        display: block;
        margin-bottom: 10px;
    }

    .kapatdesc {
        display: block;
        padding: 15px 0;
        font-family: "Nunito", sans-serif;
    }

    .kapatbtn {
        width: 250px;
        border-radius: 6px;
        display: block;
        padding: 15px 0;
        margin-top: 15px;
        max-width: 100%;
        font-size: 17px;
        height: 50px;
        background-color: #003CA6;
        color: white;
        font-weight: bold !important;
        font-family: "Nunito", sans-serif;
    }

        .kapatbtn img {
            margin-right: 10px;
            height: 25px;
        }

    a.kampanya-btn {
        border-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: fit-content;
        border-radius: 30px;
        background-color: #fff;
        font-size: 18px;
        font-weight: bold !important;
        color: #333;
        padding: 10px 20px;
    }

    .ikon.sonraki-ok {
        background-image: url(https://listanex.fun/icons/nextArrow.svg);
    }

    .ikon {
        width: 20px;
        display: block;
        height: 17px;
        background-size: cover;
        background-size: contain;
        background-position: center;
    }

    .btn-gen {
        -webkit-appearance: none;
        appearance: none;
        -moz-appearance: none;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        background-color: #333792;
        border-color: #333792;
        font-family: "HelveticaNow", sans-serif !important;
        border-style: solid;
        border-width: 1px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        margin: 0;
        position: relative;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        padding: 10px 45px;
        color: #fff;
        -webkit-transition: background-color 300ms ease-out;
        -o-transition: background-color 300ms ease-out;
        transition: background-color 300ms ease-out;
        outline: none;
    }

    .duyuru-container .duyuru-icerik .duyuru-satir h2 {
        font-size: 32px;
        font-weight: bold !important;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 0.32px;
        text-align: left;
        color: yellow;
        margin: 0;
    }

    .duyuru-container {
        position: relative;
        margin-top: 10px;
    }

        .duyuru-container:after {
            background-color: #FFF7ED;
            background-size: 50%;
            width: 100%;
            height: 100%;
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .duyuru-container .duyuru-icerik {
            display: flex;
            max-width: 1260px;
            padding: 0px 10px;
            margin: auto;
            padding-top: 50px;
            padding-bottom: 35px;
        }

    #kodu-kopyala-wrapper {
        cursor: pointer;
        display: inline-block;
        padding-right: 29px;
        background-image: URL('copy-icon.svg');
        filter: brightness(0) invert(1);
        background-position: right;
        background-repeat: no-repeat;
        background-size: 20px;
    }

    #indirim-kodu {
        cursor: pointer;
        color: yellow;
    }

    /*DUYURU*/

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik {
            flex-direction: column;
            align-items: flex-start;
            padding-top: 0;
            padding: 0px 0px 0px 17px;
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-resim {
        flex: 1;
    }

        .duyuru-container .duyuru-icerik .duyuru-resim picture {
            border-radius: 6px;
        }

    .duyuru-container .duyuru-icerik .duyuru-yazi {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding-top: 22px;
    }

    .duyuru-container .duyuru-icerik .duyuru-satir {
        flex: 1;
        padding-right: 40px;
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir {
            padding-right: 0;
            margin-bottom: 24px;
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-satir h2 {
        font-size: 32px;
        font-weight: bold !important;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 0.32px;
        text-align: left;
        color: white;
        margin: 0;
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir h2 {
            font-size: 24px;
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-satir p {
        font-size: 24px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1a1a1a;
        margin: 0;
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir p {
            font-size: 21px;
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .input_form a {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 1%;
        padding: 12px;
        border-radius: 30px;
        background-color: #6328e0;
        color: #fff;
        text-decoration: unset;
    }

    .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .input_form {
        position: relative;
        width: 100%;
    }

        .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .input_form input {
            padding: 3px 3px 2px 29px;
            border-radius: 30px;
            border: solid 1px #6328e0;
            height: 55px;
            font-size: 16px;
            font-weight: bold !important;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: left;
            color: #6328e0;
            margin: 0;
        }

            .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .input_form input::placeholder {
                font-size: 16px;
                font-weight: bold !important;
                font-stretch: normal;
                font-style: normal;
                line-height: normal;
                letter-spacing: normal;
                text-align: left;
                color: #6328e0;
            }

        .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .input_form a:hover {
            background-color: #865cde;
        }

    .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .zaman-sayaci {
        display: flex;
        gap: 12px;
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .zaman-sayaci {
            gap: 8px;
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .zaman-sayaci span {
        font-size: 64px;
        font-weight: bold !important;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 0.64px;
        text-align: left;
        color: yellow;
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .zaman-sayaci span {
            font-size: 45px;
            line-height: 1.5;
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .zaman-sayaci span span {
        font-size: 32px;
        letter-spacing: 0.32px;
    }

    .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .form {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .form {
            width: calc(100% - 7px);
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .form span {
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1a1a1a;
        margin-top: 10px;
        padding-left: 24px;
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman .form span {
            font-size: 14px;
            margin-top: 8px;
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman {
        position: absolute;
        top: 52%;
        left: calc((100% - 1260px) / 2 + 10px);
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir.kalan-zaman {
            position: static;
            margin-top: 13px;
        }
    }

    .duyuru-container.ozel-kampanya:after {
        background-color: #b71e32;
    }

    @media only screen and (min-width: 780px) {
        .duyuru-container:after {
            height: 100%;
        }
    }

    @media only screen and (min-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir h2 {
            margin-bottom: 10px;
            color: white;
        }
    }

    .duyuru-container .duyuru-icerik .duyuru-satir p {
        color: #fff;
        margin-bottom: 20px;
        font-size: 23px;
    }

    @media only screen and (max-width: 780px) {
        .duyuru-container .duyuru-icerik .duyuru-satir p {
            font-size: 18px !important;
        }
    }

    a.kampanya-btn {
        border-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: fit-content;
        border-radius: 30px;
        background-color: #fff;
        font-size: 18px;
        font-weight: bold !important;
        color: #333;
    }

    @media only screen and (max-width: 780px) {
        a.kampanya-btn {
            font-size: 14px;
        }
    }

    /*DUYURU*/

    .mahallediv1 + .acLoading {
        background-image: url(../../../../loaderroll.gif);
    }

    .cathead {
        display: flex;
        flex-direction: column;
    }


    .tab-container {
        width: 100%;
        margin: auto;
    }

    .tabs {
        display: flex;
        width: max-content;
    }

        .tabs .tab {
            flex: 1;
            padding: 10px;
            cursor: pointer;
            text-align: center;
            border: none;
            outline: none;
            background: #fff;
            transition: background 0.3s;
            /* max-width: 200px; */
            white-space: nowrap;
            margin: 0;
        }

            .tabs .tab:hover {
                background: #fff;
            }

            .tabs .tab.active {
                background: #ffffff;
                border-bottom: 2px solid #000;
                color: #000;
                font-size: 15px;
            }

    .tab-content {
        display: none;
        background: #ffffff;
        padding: 15px;
        border-top: 1px solid #ddd;
    }

        .tab-content.active {
            display: block;
        }

    .product__description {
        border-bottom: none;
    }

    .uruncatlink, .uruncatlink:hover {
        display: inline-block;
        height: 27px;
        background-color: #e2e7e9;
        line-height: 27px;
        padding: 0 8px;
        border-radius: 15px;
        color: #707070;
        margin-right: 5px;
        margin-bottom: 10px;
        margin-left: 0px;
        white-space: nowrap;
        font-size: 14px;
    }



    @media (max-width: 992px) {
        .parentcatsPR {
            display: flex;
            overflow: auto;
        }

        .breadcrumb {
            order: 1;
            text-align: center;
            margin-left: 0;
        }

        .cathead > h1 {
            order: 2;
            margin: 0;
            margin-bottom: 5px;
            width: auto;
            text-align: center;
        }
    }

    .show-more-btn {
        -webkit-box-align: center;
        align-items: center;
        border: none;
        border-radius: 8px;
        box-sizing: border-box;
        cursor: pointer;
        display: inline-block;
        font-stretch: normal;
        font-style: normal;
        font-weight: 600;
        -webkit-box-pack: center;
        justify-content: center;
        outline: none;
        padding: 12px 21px;
        position: relative;
        text-decoration: none;
        background-color: #003CA6;
        color: rgb(255, 255, 255);
        font-size: 16px;
        height: 48px;
        min-width: 160px;
        margin: 20px auto;
    }

    #loadingSpinner {
        margin: 20px auto;
        display: inline-block;
        text-align: center;
    }

        #loadingSpinner img {
            width: 100px;
        }



    .product_resimdiv {
        background-color: white;
        border: 1px solid #fff;
        height: auto;
    }

    @media (min-width: 1024px) {
        .product, .products a {
            -webkit-flex: 0 0 calc(25% - 20px);
            -moz-flex: 0 0 calc(25% - 20px);
            -ms-flex: 0 0 calc(25% - 20px);
            flex: 0 0 calc(20% - 20px);
            height: auto;
        }
    }

    @media (max-width: 992px) {
        .product_resimdiv {
            border: none;
            flex-grow: initial;
            display: block;
            height: auto;
            height: 158px;
            flex: 50%;
            padding-top: 10px;
        }
    }


    .download-container {
        max-width: 1100px;
        margin: 48px auto;
        padding: 0 20px;
        font-family: Arial, sans-serif;
        color: #111;
    }

    .download-title {
        text-align: center;
        font-weight: 700;
        margin-bottom: 28px;
    }

    .download-layout {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 40px;
        align-items: center;
    }

    .download-divider {
        background: #e6e6e6;
        width: 1px;
        height: 100%;
    }

    .download-stores {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

        .download-stores a {
            display: inline-block;
            text-align: center;
        }

        .download-stores img {
            display: inline-block;
            height: 50px;
            width: auto;
            border-radius: 12px;
        }

    .download-qrbox {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .download-qrbox img {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            box-shadow: 0 4px 14px rgba(0,0,0,.08);
        }

    .download-qrtext {
        font-size: 14px;
    }
    /* Responsive */
    @media (max-width: 900px) {
        .download-layout {
            grid-template-columns: 1fr;
        }

        .download-divider {
            display: none;
        }

        .download-qrbox img {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 540px) {
        .download-qrbox {
            display: none
        }
    }


    .socials {
        display: flex;
        gap: 20px; /* ikonlar arası boşluk */
        align-items: center;
    }

        .socials img {
            width: 36px; /* boyutu burada kontrol edin */
            height: 36px;
            display: block;
            transition: transform .15s ease, opacity .15s ease;
        }

        .socials a:hover img {
            transform: scale(1.06);
            opacity: .9;
        }

    .ecommerce h2 {
        font-size: 24px;
    }

    .izin {
        font-size: 13px;
        color: #555;
    }

        .izin div {
            margin-top: 6px;
        }

    .ikost_container {
        max-width: 1200px;
        margin: 24px auto;
        padding: 0 0
    }

    .ikost_card {
        border: 1px solid var(--ikost-pink-border);
        background: var(--ikost-pink-bg);
        border-radius: 16px;
        padding: 4px 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .ikost_card--green {
        border-color: var(--ikost-green-border);
        background: var(--ikost-green-bg);
    }

    .ikost_card_icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #eee;
    }

    .ikost_card_body {
        flex: 1
    }

    .ikost_card_title {
        font-size: 15px;
        font-weight: 800;
        margin: 0 0 0px;
        display: block;
    }

    .ikost_card_desc {
        color: #666;
        margin: 0
    }

        .ikost_card_desc b {
            color: #000
        }

    .ikost_card_actions {
        margin-left: auto
    }

    .ikost_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 20px;
        border-radius: 14px;
        background: #222;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        margin: 10px 0;
    }

    .ikost_btn_ic {
        align-items: center;
        justify-content: center;
        padding: 9px 9px;
        border-radius: 14px;
        background: #222;
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        margin: 0;
        position: absolute;
        bottom: 6px;
        right: 6px;
    }

    .ikost_openEmail_ic_ok, .ikost_openPhone_ic_ok {
        align-items: center;
        justify-content: center;
        padding: 9px 8px;
        border-radius: 14px;
        background: #fff;
        color: green;
        font-weight: 700;
        font-size: 12px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        margin: 0;
        position: absolute;
        bottom: 6px;
        right: 6px;
    }

    .ikost_btn[disabled] {
        opacity: .6;
        cursor: not-allowed
    }

    /* Modal */
    .ikost_modal_backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        z-index: 10000;
    }

        .ikost_modal_backdrop.ikost_show {
            display: flex
        }

    .ikost_modal {
        width: min(560px,100%);
        background: #fff;
        border-radius: 18px;
        padding: 26px 26px 22px;
        border: 1px solid #eee;
        box-shadow: 0 20px 60px rgba(0,0,0,.25);
        position: relative;
    }

    .ikost_modal_close {
        position: absolute;
        right: 14px;
        top: 14px;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: 1px solid #ddd;
        background: #fff;
        display: grid;
        place-items: center;
        cursor: pointer;
        font-size: 20px;
    }

    .ikost_modal_title {
        font-size: 18px;
        font-weight: 800;
        text-align: center;
        margin: 6px 0 10px
    }

    .ikost_modal_subtitle {
        font-size: 14px;
        color: #555;
        text-align: center;
        margin: 0 0 22px
    }

    .ikost_otp {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin: 10px 0 8px
    }

        .ikost_otp input {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            border: 1.5px solid #dcdfe4;
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            outline: none;
            transition: border .15s, box-shadow .15s;
        }

            .ikost_otp input:focus {
                border-color: var(--ikost-ring);
                box-shadow: 0 0 0 3px rgba(59,130,246,.15)
            }

    .ikost_meta {
        text-align: center;
        font-size: 13px;
        color: #777;
        margin-top: 6px;
        min-height: 20px
    }

    .ikost_footer_actions {
        margin-top: 14px
    }

        .ikost_footer_actions .ikost_btn {
            width: 100%;
            font-size: 18px;
            height: 48px
        }

    .ikost_link {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
        cursor: pointer
    }

        .ikost_link[disabled] {
            pointer-events: none;
            opacity: .5
        }

    @media (max-width:640px) {

        .ikost_container {
            padding: 0 20px
        }

        .ikost_card {
            flex-direction: column;
            align-items: flex-start
        }

        .ikost_card_title {
            font-size: 16px
        }

        .ikost_card_desc {
            font-size: 14px
        }

        .ikost_btn {
            font-size: 16px;
            width: 100%
        }
    }

    .epostaizincheck {
        display: none;
    }

    .btn-primary {
        background: #003CA6;
    }

        .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
            color: #fff;
            background-color: #003CA6;
            border: 1px solid #003CA6;
        }

    .green.btn:hover, .green.btn:focus, .green.btn:active, .green.btn.active {
        color: #FFFFFF;
        background-color: #003CA6;
    }


    .smARA, .shopping-cart, .islem-asama_adimlar-item.yesiltik:before {
        background-color: #003CA6;
    }

    .slick-slider {
        height: max-content;
    }

    .breadcrumb > li + li:before {
        content: "›";
        font-size: 17px;
    }

    .ion-ios-close:before {
        content: "×";
    }
    /* BANNER */
    /* BANNER */
    /* BANNER */
    /* Content Colors */
    .content-brand {
        color: var(--brand) !important;
    }

    .content-brand-light {
        color: var(--brand-light) !important;
    }

    .content-cream {
        color: var(--cream) !important;
    }

    .content-cream-light {
        color: var(--cream-light) !important;
    }

    .content-black {
        color: var(--bn-black) !important;
    }

    .content-white {
        color: var(--bn-white) !important;
    }

    /* Surface Colors */
    .surface-brand {
        background: var(--brand) !important;
    }

    .surface-brand-light {
        background: var(--brand-light) !important;
    }

    .surface-cream {
        background: var(--cream) !important;
    }

    .surface-cream-light {
        background: var(--cream-light) !important;
    }

    .surface-black {
        background: var(--bn-black) !important;
    }

    .surface-white {
        background: var(--bn-white) !important;
    }

    /* Typography Utilities */
    .font-primary {
        font-family: var(--family-primary);
    }

    .text-8 {
        font-size: var(--size-xs) !important;
    }

    .text-10 {
        font-size: var(--size-s) !important;
    }

    .text-12 {
        font-size: var(--size-m) !important;
    }

    .text-14 {
        font-size: var(--size-l) !important;
    }

    .text-16 {
        font-size: var(--size-xl) !important;
    }

    .text-18 {
        font-size: var(--size-1xl) !important;
    }

    .text-20 {
        font-size: var(--size-2xl) !important;
    }

    .text-24 {
        font-size: var(--size-3xl) !important;
    }

    .text-30 {
        font-size: var(--size-4xl) !important;
    }

    .text-36 {
        font-size: var(--size-5xl) !important;
    }

    .text-48 {
        font-size: var(--size-6xl) !important;
    }

    .text-60 {
        font-size: var(--size-7xl) !important;
    }

    .text-72 {
        font-size: var(--size-8xl) !important;
    }

    .text-96 {
        font-size: var(--size-9xl) !important;
    }

    /* Font Weight Utilities */
    .font-light {
        font-weight: 300 !important;
    }

    .font-regular {
        font-weight: 400 !important;
    }

    .font-semibold {
        font-weight: 600 !important;
    }

    .font-bold {
        font-weight: 700 !important;
    }

    /* Line Height Utilities */
    .lh-auto {
        line-height: auto !important;
    }

    .lh-100 {
        line-height: 100% !important;
    }

    .lh-110 {
        line-height: 110% !important;
    }

    .lh-120 {
        line-height: 120% !important;
    }

    .lh-130 {
        line-height: 130% !important;
    }

    .lh-140 {
        line-height: 140% !important;
    }

    .lh-150 {
        line-height: 150% !important;
    }

    /* Radius Utilities */
    .radius-4 {
        border-radius: var(--size-xxs) !important;
    }

    .radius-8 {
        border-radius: var(--size-xs) !important;
    }

    .radius-10 {
        border-radius: var(--size-s) !important;
    }

    .radius-12 {
        border-radius: var(--size-m) !important;
    }

    .radius-14 {
        border-radius: var(--size-l) !important;
    }

    .radius-16 {
        border-radius: var(--size-xl) !important;
    }

    .radius-18 {
        border-radius: var(--size-1xl) !important;
    }

    .radius-20 {
        border-radius: var(--size-2xl) !important;
    }

    .radius-24 {
        border-radius: var(--size-3xl) !important;
    }

    .radius-30 {
        border-radius: var(--size-4xl) !important;
    }

    .radius-36 {
        border-radius: var(--size-5xl) !important;
    }

    .radius-48 {
        border-radius: var(--size-6xl) !important;
    }

    .radius-60 {
        border-radius: var(--size-7xl) !important;
    }

    .radius-72 {
        border-radius: var(--size-8xl) !important;
    }

    .radius-96 {
        border-radius: var(--size-9xl) !important;
    }

    /* Padding Utilities */
    .p-4 {
        padding: var(--size-xxs) !important;
    }

    .p-8 {
        padding: var(--size-xs) !important;
    }

    .p-10 {
        padding: var(--size-s) !important;
    }

    .p-12 {
        padding: var(--size-m) !important;
    }

    .p-14 {
        padding: var(--size-l) !important;
    }

    .p-16 {
        padding: var(--size-xl) !important;
    }

    .p-18 {
        padding: var(--size-1xl) !important;
    }

    .p-20 {
        padding: var(--size-2xl) !important;
    }

    .p-24 {
        padding: var(--size-3xl) !important;
    }

    .p-30 {
        padding: var(--size-4xl) !important;
    }

    .p-36 {
        padding: var(--size-5xl) !important;
    }

    .p-48 {
        padding: var(--size-6xl) !important;
    }

    .p-60 {
        padding: var(--size-7xl) !important;
    }

    .p-72 {
        padding: var(--size-8xl) !important;
    }

    .p-96 {
        padding: var(--size-9xl) !important;
    }

    /* Margin Utilities */
    .m-4 {
        margin: var(--size-xxs) !important;
    }

    .m-8 {
        margin: var(--size-xs) !important;
    }

    .m-10 {
        margin: var(--size-s) !important;
    }

    .m-12 {
        margin: var(--size-m) !important;
    }

    .m-14 {
        margin: var(--size-l) !important;
    }

    .m-16 {
        margin: var(--size-xl) !important;
    }

    .m-18 {
        margin: var(--size-1xl) !important;
    }

    .m-20 {
        margin: var(--size-2xl) !important;
    }

    .m-24 {
        margin: var(--size-3xl) !important;
    }

    .m-30 {
        margin: var(--size-4xl) !important;
    }

    .m-36 {
        margin: var(--size-5xl) !important;
    }

    .m-48 {
        margin: var(--size-6xl) !important;
    }

    .m-60 {
        margin: var(--size-7xl) !important;
    }

    .m-72 {
        margin: var(--size-8xl) !important;
    }

    .m-96 {
        margin: var(--size-9xl) !important;
    }

    /* Padding Direction Utilities */
    .pt-4 {
        padding-top: var(--size-xxs) !important;
    }

    .pt-8 {
        padding-top: var(--size-xs) !important;
    }

    .pt-10 {
        padding-top: var(--size-s) !important;
    }

    .pt-12 {
        padding-top: var(--size-m) !important;
    }

    .pt-14 {
        padding-top: var(--size-l) !important;
    }

    .pt-16 {
        padding-top: var(--size-xl) !important;
    }

    .pt-18 {
        padding-top: var(--size-1xl) !important;
    }

    .pt-20 {
        padding-top: var(--size-2xl) !important;
    }

    .pt-24 {
        padding-top: var(--size-3xl) !important;
    }

    .pt-30 {
        padding-top: var(--size-4xl) !important;
    }

    .pt-36 {
        padding-top: var(--size-5xl) !important;
    }

    .pt-48 {
        padding-top: var(--size-6xl) !important;
    }

    .pt-60 {
        padding-top: var(--size-7xl) !important;
    }

    .pt-72 {
        padding-top: var(--size-8xl) !important;
    }

    .pt-96 {
        padding-top: var(--size-9xl) !important;
    }

    .pr-4 {
        padding-right: var(--size-xxs) !important;
    }

    .pr-8 {
        padding-right: var(--size-xs) !important;
    }

    .pr-10 {
        padding-right: var(--size-s) !important;
    }

    .pr-12 {
        padding-right: var(--size-m) !important;
    }

    .pr-14 {
        padding-right: var(--size-l) !important;
    }

    .pr-16 {
        padding-right: var(--size-xl) !important;
    }

    .pr-18 {
        padding-right: var(--size-1xl) !important;
    }

    .pr-20 {
        padding-right: var(--size-2xl) !important;
    }

    .pr-24 {
        padding-right: var(--size-3xl) !important;
    }

    .pr-30 {
        padding-right: var(--size-4xl) !important;
    }

    .pr-36 {
        padding-right: var(--size-5xl) !important;
    }

    .pr-48 {
        padding-right: var(--size-6xl) !important;
    }

    .pr-60 {
        padding-right: var(--size-7xl) !important;
    }

    .pr-72 {
        padding-right: var(--size-8xl) !important;
    }

    .pr-96 {
        padding-right: var(--size-9xl) !important;
    }

    .pb-4 {
        padding-bottom: var(--size-xxs) !important;
    }

    .pb-8 {
        padding-bottom: var(--size-xs) !important;
    }

    .pb-10 {
        padding-bottom: var(--size-s) !important;
    }

    .pb-12 {
        padding-bottom: var(--size-m) !important;
    }

    .pb-14 {
        padding-bottom: var(--size-l) !important;
    }

    .pb-16 {
        padding-bottom: var(--size-xl) !important;
    }

    .pb-18 {
        padding-bottom: var(--size-1xl) !important;
    }

    .pb-20 {
        padding-bottom: var(--size-2xl) !important;
    }

    .pb-24 {
        padding-bottom: var(--size-3xl) !important;
    }

    .pb-30 {
        padding-bottom: var(--size-4xl) !important;
    }

    .pb-36 {
        padding-bottom: var(--size-5xl) !important;
    }

    .pb-48 {
        padding-bottom: var(--size-6xl) !important;
    }

    .pb-60 {
        padding-bottom: var(--size-7xl) !important;
    }

    .pb-72 {
        padding-bottom: var(--size-8xl) !important;
    }

    .pb-96 {
        padding-bottom: var(--size-9xl) !important;
    }

    .pl-4 {
        padding-left: var(--size-xxs) !important;
    }

    .pl-8 {
        padding-left: var(--size-xs) !important;
    }

    .pl-10 {
        padding-left: var(--size-s) !important;
    }

    .pl-12 {
        padding-left: var(--size-m) !important;
    }

    .pl-14 {
        padding-left: var(--size-l) !important;
    }

    .pl-16 {
        padding-left: var(--size-xl) !important;
    }

    .pl-18 {
        padding-left: var(--size-1xl) !important;
    }

    .pl-20 {
        padding-left: var(--size-2xl) !important;
    }

    .pl-24 {
        padding-left: var(--size-3xl) !important;
    }

    .pl-30 {
        padding-left: var(--size-4xl) !important;
    }

    .pl-36 {
        padding-left: var(--size-5xl) !important;
    }

    .pl-48 {
        padding-left: var(--size-6xl) !important;
    }

    .pl-60 {
        padding-left: var(--size-7xl) !important;
    }

    .pl-72 {
        padding-left: var(--size-8xl) !important;
    }

    .pl-96 {
        padding-left: var(--size-9xl) !important;
    }

    /* Margin Direction Utilities */
    .mt-4 {
        margin-top: var(--size-xxs) !important;
    }

    .mt-8 {
        margin-top: var(--size-xs) !important;
    }

    .mt-10 {
        margin-top: var(--size-s) !important;
    }

    .mt-12 {
        margin-top: var(--size-m) !important;
    }

    .mt-14 {
        margin-top: var(--size-l) !important;
    }

    .mt-16 {
        margin-top: var(--size-xl) !important;
    }

    .mt-18 {
        margin-top: var(--size-1xl) !important;
    }

    .mt-20 {
        margin-top: var(--size-2xl) !important;
    }

    .mt-24 {
        margin-top: var(--size-3xl) !important;
    }

    .mt-30 {
        margin-top: var(--size-4xl) !important;
    }

    .mt-36 {
        margin-top: var(--size-5xl) !important;
    }

    .mt-48 {
        margin-top: var(--size-6xl) !important;
    }

    .mt-60 {
        margin-top: var(--size-7xl) !important;
    }

    .mt-72 {
        margin-top: var(--size-8xl) !important;
    }

    .mt-96 {
        margin-top: var(--size-9xl) !important;
    }

    .mr-4 {
        margin-right: var(--size-xxs) !important;
    }

    .mr-8 {
        margin-right: var(--size-xs) !important;
    }

    .mr-10 {
        margin-right: var(--size-s) !important;
    }

    .mr-12 {
        margin-right: var(--size-m) !important;
    }

    .mr-14 {
        margin-right: var(--size-l) !important;
    }

    .mr-16 {
        margin-right: var(--size-xl) !important;
    }

    .mr-18 {
        margin-right: var(--size-1xl) !important;
    }

    .mr-20 {
        margin-right: var(--size-2xl) !important;
    }

    .mr-24 {
        margin-right: var(--size-3xl) !important;
    }

    .mr-30 {
        margin-right: var(--size-4xl) !important;
    }

    .mr-36 {
        margin-right: var(--size-5xl) !important;
    }

    .mr-48 {
        margin-right: var(--size-6xl) !important;
    }

    .mr-60 {
        margin-right: var(--size-7xl) !important;
    }

    .mr-72 {
        margin-right: var(--size-8xl) !important;
    }

    .mr-96 {
        margin-right: var(--size-9xl) !important;
    }

    .mb-4 {
        margin-bottom: var(--size-xxs) !important;
    }

    .mb-8 {
        margin-bottom: var(--size-xs) !important;
    }

    .mb-10 {
        margin-bottom: var(--size-s) !important;
    }

    .mb-12 {
        margin-bottom: var(--size-m) !important;
    }

    .mb-14 {
        margin-bottom: var(--size-l) !important;
    }

    .mb-16 {
        margin-bottom: var(--size-xl) !important;
    }

    .mb-18 {
        margin-bottom: var(--size-1xl) !important;
    }

    .mb-20 {
        margin-bottom: var(--size-2xl) !important;
    }

    .mb-24 {
        margin-bottom: var(--size-3xl) !important;
    }

    .mb-30 {
        margin-bottom: var(--size-4xl) !important;
    }

    .mb-36 {
        margin-bottom: var(--size-5xl) !important;
    }

    .mb-48 {
        margin-bottom: var(--size-6xl) !important;
    }

    .mb-60 {
        margin-bottom: var(--size-7xl) !important;
    }

    .mb-72 {
        margin-bottom: var(--size-8xl) !important;
    }

    .mb-96 {
        margin-bottom: var(--size-9xl) !important;
    }

    .ml-4 {
        margin-left: var(--size-xxs) !important;
    }

    .ml-8 {
        margin-left: var(--size-xs) !important;
    }

    .ml-10 {
        margin-left: var(--size-s) !important;
    }

    .ml-12 {
        margin-left: var(--size-m) !important;
    }

    .ml-14 {
        margin-left: var(--size-l) !important;
    }

    .ml-16 {
        margin-left: var(--size-xl) !important;
    }

    .ml-18 {
        margin-left: var(--size-1xl) !important;
    }

    .ml-20 {
        margin-left: var(--size-2xl) !important;
    }

    .ml-24 {
        margin-left: var(--size-3xl) !important;
    }

    .ml-30 {
        margin-left: var(--size-4xl) !important;
    }

    .ml-36 {
        margin-left: var(--size-5xl) !important;
    }

    .ml-48 {
        margin-left: var(--size-6xl) !important;
    }

    .ml-60 {
        margin-left: var(--size-7xl) !important;
    }

    .ml-72 {
        margin-left: var(--size-8xl) !important;
    }

    .ml-96 {
        margin-left: var(--size-9xl) !important;
    }

    /* Text Direction Utilities */
    .text-center {
        text-align: center;
    }

    .text-left {
        text-align: left;
    }

    .text-right {
        text-align: right;
    }

    /* Content Direction Utilities */

    .content-center {
        align-items: center;
    }

    .content-left {
        align-items: start;
    }

    .content-right {
        align-items: end;
    }

    /* Custom Animation Delay Utilities */

    .animate-delay-02s {
        animation-delay: 0.2s !important;
    }

    .animate-delay-03s {
        animation-delay: 0.3s !important;
    }

    .animate-delay-04s {
        animation-delay: 0.4s !important;
    }

    .animate-delay-05s {
        animation-delay: 0.5s !important;
    }

    /* Grid Layout */
    .grid {
        font-family: var(--family-primary);
        line-height: auto;
        font-optical-sizing: auto;
        font-style: normal;
        display: grid;
        gap: var(--size-xl);
        grid-template-columns: 2fr 1fr;
        grid-auto-rows: minmax(317px, 1fr);
    }

    .hero {
        grid-row: 1 / span 2;
        grid-column: 1;
        position: relative;
    }

    .grid-1 {
        grid-row: 1;
        grid-column: 2;
    }

    .grid-2 {
        grid-row: 2;
        grid-column: 2;
    }

    .small-banners {
        grid-column: 1 / span 2;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--size-xl);
    }

        .small-banners .banner {
            min-height: 205px;
            max-height: 205px;
        }

    /* Banner Layouts */
    .grid article {
        position: relative;
        overflow: hidden;
        border-radius: var(--size-xl);
        display: flex;
        align-items: stretch;
        isolation: isolate;
    }

        .grid article .content {
            position: relative;
            width: 100%;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: var(--size-xs);
            height: 100%;
        }

    .grid h3 {
        margin: 0;
        color: var(--brand);
        line-height: 110%;
    }

    .grid p {
        margin: 0;
        color: var(--bn-black);
        line-height: 130%;
    }

    /* Discount */
    .discount {
        display: inline-flex;
        align-items: center;
        border: 1px solid var(--brand);
        border-radius: var(--size-xs);
        overflow: hidden;
    }

        .discount .label {
            background: var(--brand-light);
            color: var(--brand);
            padding: var(--size-s);
            font-weight: 700;
            font-size: var(--size-m);
        }

        .discount .code {
            background: var(--brand);
            border: 1px solid var(--brand);
            color: var(--bn-white);
            padding: var(--size-s);
            font-weight: 700;
            font-size: var(--size-l);
        }

    .banner-link {
        position: relative;
        inset: 0;
        cursor: pointer;
        text-decoration: none !important;
        width: 100%;
        height: auto;
    }

    /* Buttons */
    .b-btn {
        position: absolute;
        bottom: 0;
        border: 0;
        font-size: var(--size-xl);
        border-radius: var(--size-xs);
        padding: 12px 24px;
        background: var(--brand);
        color: var(--bn-white);
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .b-btn-small {
        position: absolute;
        bottom: 0;
        border: 0;
        font-size: var(--size-l);
        border-radius: var(--size-xs);
        padding: 10px 24px;
        background: var(--brand);
        color: var(--bn-white);
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: 0.3s ease;
        max-height: 40px !important;
    }

        .b-btn:hover,
        .b-btn-small:hover {
            background: var(--bn-white);
            color: var(--brand);
            box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
        }

    .b-btn-white {
        position: absolute;
        bottom: 0;
        border: 0;
        font-size: var(--size-xl);
        border-radius: var(--size-xs);
        padding: 12px 24px;
        background: var(--bn-white);
        color: var(--brand);
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .b-btn-white-small {
        position: absolute;
        bottom: 0;
        border: 0;
        font-size: var(--size-l);
        border-radius: var(--size-xs);
        padding: 10px 24px;
        background: var(--bn-white);
        color: var(--bn-black);
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: 0.3s ease;
        max-height: 40px !important;
    }

        .b-btn-white:hover,
        .b-btn-white-small:hover {
            background: var(--brand);
            color: var(--bn-white);
            box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
        }

    /* Figures */
    .figure {
        position: absolute;
        inset: auto 0 0 auto;
        height: auto;
        pointer-events: none;
        margin: 0 auto;
        left: 0;
        right: 0;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Gif Maker */
    .gif {
        opacity: 0;
        animation: sliderFade 4s infinite;
        animation-delay: calc(var(--i) * 1s);
    }

    .hero .figure.gif {
        position: absolute;
        bottom: 0;
        left: 50%;
        right: auto;
        margin: 0;
        transform: translateX(-50%);
    }

    b {
        font-weight: 700 !important;
    }

    @keyframes sliderFade {
        0% {
            opacity: 1;
        }

        24.999% {
            opacity: 1;
        }

        25% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

    /* Responsiveness */
    @media (max-width: 1200px) {
        .grid {
            grid-auto-rows: minmax(270px, 1fr);
        }
    }

    @media (max-width: 1024px) and (min-width: 768px) {
        .grid {
            grid-auto-rows: minmax(240px, 1fr);
        }
    }

    @media (max-width: 768px) and (min-width: 500px) {
        .grid {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: auto;
        }

        .hero {
            grid-column: 1 / span 2;
        }

        .grid-1 {
            grid-column: 1;
            grid-row: auto;
        }

        .grid-2 {
            grid-column: 2;
            grid-row: auto;
        }

        .small-banners {
            grid-column: 1 / span 2;
            grid-template-columns: repeat(3, 1fr);
        }

        .hero {
            min-height: 420px;
        }

        .grid-1,
        .grid-2 {
            min-height: 270px;
        }

        .small-banners .banner {
            min-height: 205px;
            max-height: 205px;
        }

        .b-btn-small {
            padding: 10px 16px;
        }
    }

    @media (max-width: 500px) {


        .grid {
            grid-template-columns: 1fr;
            grid-auto-rows: auto;
        }

        .hero {
            grid-column: 1 / span 1;
        }

        .grid-1 {
            grid-column: 1 / span 1;
            grid-row: auto;
        }

        .grid-2 {
            grid-column: 1 / span 1;
            grid-row: auto;
        }

        .small-banners {
            grid-column: 1 / span 1;
            grid-template-columns: 1fr;
        }

        .hero {
            min-height: 546px;
        }

        .grid-1,
        .grid-2 {
            min-height: 220px;
        }

        .small-banners .banner {
            min-height: 136px;
            max-height: 136px;
        }

        .mobile-break {
            display: block !important;
        }

        .b-btn-small {
            padding: 10px 16px;
        }

        .animate-disable-mobile {
            /*CSS transitions*/
            -o-transition-property: none !important;
            -moz-transition-property: none !important;
            -ms-transition-property: none !important;
            -webkit-transition-property: none !important;
            transition-property: none !important;
            /*CSS transforms*/
            -o-transform: none !important;
            -moz-transform: none !important;
            -ms-transform: none !important;
            -webkit-transform: none !important;
            transform: none !important;
            /*CSS animations*/
            -webkit-animation: none !important;
            -moz-animation: none !important;
            -o-animation: none !important;
            -ms-animation: none !important;
            animation: none !important;
        }
    }

    :root {
        --animate-duration: 1s;
        --animate-delay: 1s;
        --animate-repeat: 1
    }

    .animate__animated {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-duration: var(--animate-duration);
        animation-duration: var(--animate-duration);
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both
    }

        .animate__animated.animate__infinite {
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite
        }

        .animate__animated.animate__repeat-1 {
            -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
            -webkit-animation-iteration-count: var(--animate-repeat);
            animation-iteration-count: var(--animate-repeat)
        }

        .animate__animated.animate__repeat-2 {
            -webkit-animation-iteration-count: 2;
            animation-iteration-count: 2;
            -webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
            animation-iteration-count: calc(var(--animate-repeat)*2)
        }

        .animate__animated.animate__repeat-3 {
            -webkit-animation-iteration-count: 3;
            animation-iteration-count: 3;
            -webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
            animation-iteration-count: calc(var(--animate-repeat)*3)
        }

        .animate__animated.animate__delay-1s {
            -webkit-animation-delay: 1s;
            animation-delay: 1s;
            -webkit-animation-delay: var(--animate-delay);
            animation-delay: var(--animate-delay)
        }

        .animate__animated.animate__delay-2s {
            -webkit-animation-delay: 2s;
            animation-delay: 2s;
            -webkit-animation-delay: calc(var(--animate-delay)*2);
            animation-delay: calc(var(--animate-delay)*2)
        }

        .animate__animated.animate__delay-3s {
            -webkit-animation-delay: 3s;
            animation-delay: 3s;
            -webkit-animation-delay: calc(var(--animate-delay)*3);
            animation-delay: calc(var(--animate-delay)*3)
        }

        .animate__animated.animate__delay-4s {
            -webkit-animation-delay: 4s;
            animation-delay: 4s;
            -webkit-animation-delay: calc(var(--animate-delay)*4);
            animation-delay: calc(var(--animate-delay)*4)
        }

        .animate__animated.animate__delay-5s {
            -webkit-animation-delay: 5s;
            animation-delay: 5s;
            -webkit-animation-delay: calc(var(--animate-delay)*5);
            animation-delay: calc(var(--animate-delay)*5)
        }

        .animate__animated.animate__faster {
            -webkit-animation-duration: .5s;
            animation-duration: .5s;
            -webkit-animation-duration: calc(var(--animate-duration)/2);
            animation-duration: calc(var(--animate-duration)/2)
        }

        .animate__animated.animate__fast {
            -webkit-animation-duration: .8s;
            animation-duration: .8s;
            -webkit-animation-duration: calc(var(--animate-duration)*0.8);
            animation-duration: calc(var(--animate-duration)*0.8)
        }

        .animate__animated.animate__slow {
            -webkit-animation-duration: 2s;
            animation-duration: 2s;
            -webkit-animation-duration: calc(var(--animate-duration)*2);
            animation-duration: calc(var(--animate-duration)*2)
        }

        .animate__animated.animate__slower {
            -webkit-animation-duration: 3s;
            animation-duration: 3s;
            -webkit-animation-duration: calc(var(--animate-duration)*3);
            animation-duration: calc(var(--animate-duration)*3)
        }

    @media (prefers-reduced-motion:reduce),print {
        .animate__animated {
            -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
            -webkit-transition-duration: 1ms !important;
            transition-duration: 1ms !important;
            -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important
        }

            .animate__animated[class*=Out] {
                opacity: 0
            }
    }

    @-webkit-keyframes bounce {
        0%,20%,53%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1);
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        40%,43% {
            -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
            animation-timing-function: cubic-bezier(.755,.05,.855,.06);
            -webkit-transform: translate3d(0,-30px,0) scaleY(1.1);
            transform: translate3d(0,-30px,0) scaleY(1.1)
        }

        70% {
            -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
            animation-timing-function: cubic-bezier(.755,.05,.855,.06);
            -webkit-transform: translate3d(0,-15px,0) scaleY(1.05);
            transform: translate3d(0,-15px,0) scaleY(1.05)
        }

        80% {
            -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
            transition-timing-function: cubic-bezier(.215,.61,.355,1);
            -webkit-transform: translateZ(0) scaleY(.95);
            transform: translateZ(0) scaleY(.95)
        }

        90% {
            -webkit-transform: translate3d(0,-4px,0) scaleY(1.02);
            transform: translate3d(0,-4px,0) scaleY(1.02)
        }
    }

    @keyframes bounce {
        0%,20%,53%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1);
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        40%,43% {
            -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
            animation-timing-function: cubic-bezier(.755,.05,.855,.06);
            -webkit-transform: translate3d(0,-30px,0) scaleY(1.1);
            transform: translate3d(0,-30px,0) scaleY(1.1)
        }

        70% {
            -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
            animation-timing-function: cubic-bezier(.755,.05,.855,.06);
            -webkit-transform: translate3d(0,-15px,0) scaleY(1.05);
            transform: translate3d(0,-15px,0) scaleY(1.05)
        }

        80% {
            -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
            transition-timing-function: cubic-bezier(.215,.61,.355,1);
            -webkit-transform: translateZ(0) scaleY(.95);
            transform: translateZ(0) scaleY(.95)
        }

        90% {
            -webkit-transform: translate3d(0,-4px,0) scaleY(1.02);
            transform: translate3d(0,-4px,0) scaleY(1.02)
        }
    }

    .animate__bounce {
        -webkit-animation-name: bounce;
        animation-name: bounce;
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    @-webkit-keyframes flash {
        0%,50%,to {
            opacity: 1
        }

        25%,75% {
            opacity: 0
        }
    }

    @keyframes flash {
        0%,50%,to {
            opacity: 1
        }

        25%,75% {
            opacity: 0
        }
    }

    .animate__flash {
        -webkit-animation-name: flash;
        animation-name: flash
    }

    @-webkit-keyframes pulse {
        0% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }

        50% {
            -webkit-transform: scale3d(1.05,1.05,1.05);
            transform: scale3d(1.05,1.05,1.05)
        }

        to {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    @keyframes pulse {
        0% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }

        50% {
            -webkit-transform: scale3d(1.05,1.05,1.05);
            transform: scale3d(1.05,1.05,1.05)
        }

        to {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    .animate__pulse {
        -webkit-animation-name: pulse;
        animation-name: pulse;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    @-webkit-keyframes rubberBand {
        0% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }

        30% {
            -webkit-transform: scale3d(1.25,.75,1);
            transform: scale3d(1.25,.75,1)
        }

        40% {
            -webkit-transform: scale3d(.75,1.25,1);
            transform: scale3d(.75,1.25,1)
        }

        50% {
            -webkit-transform: scale3d(1.15,.85,1);
            transform: scale3d(1.15,.85,1)
        }

        65% {
            -webkit-transform: scale3d(.95,1.05,1);
            transform: scale3d(.95,1.05,1)
        }

        75% {
            -webkit-transform: scale3d(1.05,.95,1);
            transform: scale3d(1.05,.95,1)
        }

        to {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    @keyframes rubberBand {
        0% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }

        30% {
            -webkit-transform: scale3d(1.25,.75,1);
            transform: scale3d(1.25,.75,1)
        }

        40% {
            -webkit-transform: scale3d(.75,1.25,1);
            transform: scale3d(.75,1.25,1)
        }

        50% {
            -webkit-transform: scale3d(1.15,.85,1);
            transform: scale3d(1.15,.85,1)
        }

        65% {
            -webkit-transform: scale3d(.95,1.05,1);
            transform: scale3d(.95,1.05,1)
        }

        75% {
            -webkit-transform: scale3d(1.05,.95,1);
            transform: scale3d(1.05,.95,1)
        }

        to {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    .animate__rubberBand {
        -webkit-animation-name: rubberBand;
        animation-name: rubberBand
    }

    @-webkit-keyframes shakeX {
        0%,to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        10%,30%,50%,70%,90% {
            -webkit-transform: translate3d(-10px,0,0);
            transform: translate3d(-10px,0,0)
        }

        20%,40%,60%,80% {
            -webkit-transform: translate3d(10px,0,0);
            transform: translate3d(10px,0,0)
        }
    }

    @keyframes shakeX {
        0%,to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        10%,30%,50%,70%,90% {
            -webkit-transform: translate3d(-10px,0,0);
            transform: translate3d(-10px,0,0)
        }

        20%,40%,60%,80% {
            -webkit-transform: translate3d(10px,0,0);
            transform: translate3d(10px,0,0)
        }
    }

    .animate__shakeX {
        -webkit-animation-name: shakeX;
        animation-name: shakeX
    }

    @-webkit-keyframes shakeY {
        0%,to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        10%,30%,50%,70%,90% {
            -webkit-transform: translate3d(0,-10px,0);
            transform: translate3d(0,-10px,0)
        }

        20%,40%,60%,80% {
            -webkit-transform: translate3d(0,10px,0);
            transform: translate3d(0,10px,0)
        }
    }

    @keyframes shakeY {
        0%,to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        10%,30%,50%,70%,90% {
            -webkit-transform: translate3d(0,-10px,0);
            transform: translate3d(0,-10px,0)
        }

        20%,40%,60%,80% {
            -webkit-transform: translate3d(0,10px,0);
            transform: translate3d(0,10px,0)
        }
    }

    .animate__shakeY {
        -webkit-animation-name: shakeY;
        animation-name: shakeY
    }

    @-webkit-keyframes headShake {
        0% {
            -webkit-transform: translateX(0);
            transform: translateX(0)
        }

        6.5% {
            -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg)
        }

        18.5% {
            -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg)
        }

        31.5% {
            -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg)
        }

        43.5% {
            -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg)
        }

        50% {
            -webkit-transform: translateX(0);
            transform: translateX(0)
        }
    }

    @keyframes headShake {
        0% {
            -webkit-transform: translateX(0);
            transform: translateX(0)
        }

        6.5% {
            -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg)
        }

        18.5% {
            -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg)
        }

        31.5% {
            -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg)
        }

        43.5% {
            -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg)
        }

        50% {
            -webkit-transform: translateX(0);
            transform: translateX(0)
        }
    }

    .animate__headShake {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation-name: headShake;
        animation-name: headShake
    }

    @-webkit-keyframes swing {
        20% {
            -webkit-transform: rotate(15deg);
            transform: rotate(15deg)
        }

        40% {
            -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg)
        }

        60% {
            -webkit-transform: rotate(5deg);
            transform: rotate(5deg)
        }

        80% {
            -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg)
        }

        to {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
        }
    }

    @keyframes swing {
        20% {
            -webkit-transform: rotate(15deg);
            transform: rotate(15deg)
        }

        40% {
            -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg)
        }

        60% {
            -webkit-transform: rotate(5deg);
            transform: rotate(5deg)
        }

        80% {
            -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg)
        }

        to {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg)
        }
    }

    .animate__swing {
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-animation-name: swing;
        animation-name: swing
    }

    @-webkit-keyframes tada {
        0% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }

        10%,20% {
            -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
            transform: scale3d(.9,.9,.9) rotate(-3deg)
        }

        30%,50%,70%,90% {
            -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
            transform: scale3d(1.1,1.1,1.1) rotate(3deg)
        }

        40%,60%,80% {
            -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
            transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
        }

        to {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    @keyframes tada {
        0% {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }

        10%,20% {
            -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
            transform: scale3d(.9,.9,.9) rotate(-3deg)
        }

        30%,50%,70%,90% {
            -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
            transform: scale3d(1.1,1.1,1.1) rotate(3deg)
        }

        40%,60%,80% {
            -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
            transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
        }

        to {
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    .animate__tada {
        -webkit-animation-name: tada;
        animation-name: tada
    }

    @-webkit-keyframes wobble {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        15% {
            -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
            transform: translate3d(-25%,0,0) rotate(-5deg)
        }

        30% {
            -webkit-transform: translate3d(20%,0,0) rotate(3deg);
            transform: translate3d(20%,0,0) rotate(3deg)
        }

        45% {
            -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
            transform: translate3d(-15%,0,0) rotate(-3deg)
        }

        60% {
            -webkit-transform: translate3d(10%,0,0) rotate(2deg);
            transform: translate3d(10%,0,0) rotate(2deg)
        }

        75% {
            -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
            transform: translate3d(-5%,0,0) rotate(-1deg)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes wobble {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        15% {
            -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
            transform: translate3d(-25%,0,0) rotate(-5deg)
        }

        30% {
            -webkit-transform: translate3d(20%,0,0) rotate(3deg);
            transform: translate3d(20%,0,0) rotate(3deg)
        }

        45% {
            -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
            transform: translate3d(-15%,0,0) rotate(-3deg)
        }

        60% {
            -webkit-transform: translate3d(10%,0,0) rotate(2deg);
            transform: translate3d(10%,0,0) rotate(2deg)
        }

        75% {
            -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
            transform: translate3d(-5%,0,0) rotate(-1deg)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__wobble {
        -webkit-animation-name: wobble;
        animation-name: wobble
    }

    @-webkit-keyframes jello {
        0%,11.1%,to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        22.2% {
            -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
        }

        33.3% {
            -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
        }

        44.4% {
            -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
        }

        55.5% {
            -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
        }

        66.6% {
            -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
            transform: skewX(-.78125deg) skewY(-.78125deg)
        }

        77.7% {
            -webkit-transform: skewX(.390625deg) skewY(.390625deg);
            transform: skewX(.390625deg) skewY(.390625deg)
        }

        88.8% {
            -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
            transform: skewX(-.1953125deg) skewY(-.1953125deg)
        }
    }

    @keyframes jello {
        0%,11.1%,to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        22.2% {
            -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
        }

        33.3% {
            -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
        }

        44.4% {
            -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
        }

        55.5% {
            -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
        }

        66.6% {
            -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
            transform: skewX(-.78125deg) skewY(-.78125deg)
        }

        77.7% {
            -webkit-transform: skewX(.390625deg) skewY(.390625deg);
            transform: skewX(.390625deg) skewY(.390625deg)
        }

        88.8% {
            -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
            transform: skewX(-.1953125deg) skewY(-.1953125deg)
        }
    }

    .animate__jello {
        -webkit-animation-name: jello;
        animation-name: jello;
        -webkit-transform-origin: center;
        transform-origin: center
    }

    @-webkit-keyframes heartBeat {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1)
        }

        14% {
            -webkit-transform: scale(1.3);
            transform: scale(1.3)
        }

        28% {
            -webkit-transform: scale(1);
            transform: scale(1)
        }

        42% {
            -webkit-transform: scale(1.3);
            transform: scale(1.3)
        }

        70% {
            -webkit-transform: scale(1);
            transform: scale(1)
        }
    }

    @keyframes heartBeat {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1)
        }

        14% {
            -webkit-transform: scale(1.3);
            transform: scale(1.3)
        }

        28% {
            -webkit-transform: scale(1);
            transform: scale(1)
        }

        42% {
            -webkit-transform: scale(1.3);
            transform: scale(1.3)
        }

        70% {
            -webkit-transform: scale(1);
            transform: scale(1)
        }
    }

    .animate__heartBeat {
        -webkit-animation-name: heartBeat;
        animation-name: heartBeat;
        -webkit-animation-duration: 1.3s;
        animation-duration: 1.3s;
        -webkit-animation-duration: calc(var(--animate-duration)*1.3);
        animation-duration: calc(var(--animate-duration)*1.3);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    @-webkit-keyframes backInDown {
        0% {
            -webkit-transform: translateY(-1200px) scale(.7);
            transform: translateY(-1200px) scale(.7);
            opacity: .7
        }

        80% {
            -webkit-transform: translateY(0) scale(.7);
            transform: translateY(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }
    }

    @keyframes backInDown {
        0% {
            -webkit-transform: translateY(-1200px) scale(.7);
            transform: translateY(-1200px) scale(.7);
            opacity: .7
        }

        80% {
            -webkit-transform: translateY(0) scale(.7);
            transform: translateY(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }
    }

    .animate__backInDown {
        -webkit-animation-name: backInDown;
        animation-name: backInDown
    }

    @-webkit-keyframes backInLeft {
        0% {
            -webkit-transform: translateX(-2000px) scale(.7);
            transform: translateX(-2000px) scale(.7);
            opacity: .7
        }

        80% {
            -webkit-transform: translateX(0) scale(.7);
            transform: translateX(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }
    }

    @keyframes backInLeft {
        0% {
            -webkit-transform: translateX(-2000px) scale(.7);
            transform: translateX(-2000px) scale(.7);
            opacity: .7
        }

        80% {
            -webkit-transform: translateX(0) scale(.7);
            transform: translateX(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }
    }

    .animate__backInLeft {
        -webkit-animation-name: backInLeft;
        animation-name: backInLeft
    }

    @-webkit-keyframes backInRight {
        0% {
            -webkit-transform: translateX(2000px) scale(.7);
            transform: translateX(2000px) scale(.7);
            opacity: .7
        }

        80% {
            -webkit-transform: translateX(0) scale(.7);
            transform: translateX(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }
    }

    @keyframes backInRight {
        0% {
            -webkit-transform: translateX(2000px) scale(.7);
            transform: translateX(2000px) scale(.7);
            opacity: .7
        }

        80% {
            -webkit-transform: translateX(0) scale(.7);
            transform: translateX(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }
    }

    .animate__backInRight {
        -webkit-animation-name: backInRight;
        animation-name: backInRight
    }

    @-webkit-keyframes backInUp {
        0% {
            -webkit-transform: translateY(1200px) scale(.7);
            transform: translateY(1200px) scale(.7);
            opacity: .7
        }

        80% {
            -webkit-transform: translateY(0) scale(.7);
            transform: translateY(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }
    }

    @keyframes backInUp {
        0% {
            -webkit-transform: translateY(1200px) scale(.7);
            transform: translateY(1200px) scale(.7);
            opacity: .7
        }

        80% {
            -webkit-transform: translateY(0) scale(.7);
            transform: translateY(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }
    }

    .animate__backInUp {
        -webkit-animation-name: backInUp;
        animation-name: backInUp
    }

    @-webkit-keyframes backOutDown {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        20% {
            -webkit-transform: translateY(0) scale(.7);
            transform: translateY(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: translateY(700px) scale(.7);
            transform: translateY(700px) scale(.7);
            opacity: .7
        }
    }

    @keyframes backOutDown {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        20% {
            -webkit-transform: translateY(0) scale(.7);
            transform: translateY(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: translateY(700px) scale(.7);
            transform: translateY(700px) scale(.7);
            opacity: .7
        }
    }

    .animate__backOutDown {
        -webkit-animation-name: backOutDown;
        animation-name: backOutDown
    }

    @-webkit-keyframes backOutLeft {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        20% {
            -webkit-transform: translateX(0) scale(.7);
            transform: translateX(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: translateX(-2000px) scale(.7);
            transform: translateX(-2000px) scale(.7);
            opacity: .7
        }
    }

    @keyframes backOutLeft {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        20% {
            -webkit-transform: translateX(0) scale(.7);
            transform: translateX(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: translateX(-2000px) scale(.7);
            transform: translateX(-2000px) scale(.7);
            opacity: .7
        }
    }

    .animate__backOutLeft {
        -webkit-animation-name: backOutLeft;
        animation-name: backOutLeft
    }

    @-webkit-keyframes backOutRight {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        20% {
            -webkit-transform: translateX(0) scale(.7);
            transform: translateX(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: translateX(2000px) scale(.7);
            transform: translateX(2000px) scale(.7);
            opacity: .7
        }
    }

    @keyframes backOutRight {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        20% {
            -webkit-transform: translateX(0) scale(.7);
            transform: translateX(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: translateX(2000px) scale(.7);
            transform: translateX(2000px) scale(.7);
            opacity: .7
        }
    }

    .animate__backOutRight {
        -webkit-animation-name: backOutRight;
        animation-name: backOutRight
    }

    @-webkit-keyframes backOutUp {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        20% {
            -webkit-transform: translateY(0) scale(.7);
            transform: translateY(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: translateY(-700px) scale(.7);
            transform: translateY(-700px) scale(.7);
            opacity: .7
        }
    }

    @keyframes backOutUp {
        0% {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        20% {
            -webkit-transform: translateY(0) scale(.7);
            transform: translateY(0) scale(.7);
            opacity: .7
        }

        to {
            -webkit-transform: translateY(-700px) scale(.7);
            transform: translateY(-700px) scale(.7);
            opacity: .7
        }
    }

    .animate__backOutUp {
        -webkit-animation-name: backOutUp;
        animation-name: backOutUp
    }

    @-webkit-keyframes bounceIn {
        0%,20%,40%,60%,80%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
        }

        20% {
            -webkit-transform: scale3d(1.1,1.1,1.1);
            transform: scale3d(1.1,1.1,1.1)
        }

        40% {
            -webkit-transform: scale3d(.9,.9,.9);
            transform: scale3d(.9,.9,.9)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(1.03,1.03,1.03);
            transform: scale3d(1.03,1.03,1.03)
        }

        80% {
            -webkit-transform: scale3d(.97,.97,.97);
            transform: scale3d(.97,.97,.97)
        }

        to {
            opacity: 1;
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    @keyframes bounceIn {
        0%,20%,40%,60%,80%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
        }

        20% {
            -webkit-transform: scale3d(1.1,1.1,1.1);
            transform: scale3d(1.1,1.1,1.1)
        }

        40% {
            -webkit-transform: scale3d(.9,.9,.9);
            transform: scale3d(.9,.9,.9)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(1.03,1.03,1.03);
            transform: scale3d(1.03,1.03,1.03)
        }

        80% {
            -webkit-transform: scale3d(.97,.97,.97);
            transform: scale3d(.97,.97,.97)
        }

        to {
            opacity: 1;
            -webkit-transform: scaleX(1);
            transform: scaleX(1)
        }
    }

    .animate__bounceIn {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
        -webkit-animation-duration: calc(var(--animate-duration)*0.75);
        animation-duration: calc(var(--animate-duration)*0.75);
        -webkit-animation-name: bounceIn;
        animation-name: bounceIn
    }

    @-webkit-keyframes bounceInDown {
        0%,60%,75%,90%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,-3000px,0) scaleY(3);
            transform: translate3d(0,-3000px,0) scaleY(3)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(0,25px,0) scaleY(.9);
            transform: translate3d(0,25px,0) scaleY(.9)
        }

        75% {
            -webkit-transform: translate3d(0,-10px,0) scaleY(.95);
            transform: translate3d(0,-10px,0) scaleY(.95)
        }

        90% {
            -webkit-transform: translate3d(0,5px,0) scaleY(.985);
            transform: translate3d(0,5px,0) scaleY(.985)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes bounceInDown {
        0%,60%,75%,90%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,-3000px,0) scaleY(3);
            transform: translate3d(0,-3000px,0) scaleY(3)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(0,25px,0) scaleY(.9);
            transform: translate3d(0,25px,0) scaleY(.9)
        }

        75% {
            -webkit-transform: translate3d(0,-10px,0) scaleY(.95);
            transform: translate3d(0,-10px,0) scaleY(.95)
        }

        90% {
            -webkit-transform: translate3d(0,5px,0) scaleY(.985);
            transform: translate3d(0,5px,0) scaleY(.985)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__bounceInDown {
        -webkit-animation-name: bounceInDown;
        animation-name: bounceInDown
    }

    @-webkit-keyframes bounceInLeft {
        0%,60%,75%,90%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(-3000px,0,0) scaleX(3);
            transform: translate3d(-3000px,0,0) scaleX(3)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(25px,0,0) scaleX(1);
            transform: translate3d(25px,0,0) scaleX(1)
        }

        75% {
            -webkit-transform: translate3d(-10px,0,0) scaleX(.98);
            transform: translate3d(-10px,0,0) scaleX(.98)
        }

        90% {
            -webkit-transform: translate3d(5px,0,0) scaleX(.995);
            transform: translate3d(5px,0,0) scaleX(.995)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes bounceInLeft {
        0%,60%,75%,90%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(-3000px,0,0) scaleX(3);
            transform: translate3d(-3000px,0,0) scaleX(3)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(25px,0,0) scaleX(1);
            transform: translate3d(25px,0,0) scaleX(1)
        }

        75% {
            -webkit-transform: translate3d(-10px,0,0) scaleX(.98);
            transform: translate3d(-10px,0,0) scaleX(.98)
        }

        90% {
            -webkit-transform: translate3d(5px,0,0) scaleX(.995);
            transform: translate3d(5px,0,0) scaleX(.995)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__bounceInLeft {
        -webkit-animation-name: bounceInLeft;
        animation-name: bounceInLeft
    }

    @-webkit-keyframes bounceInRight {
        0%,60%,75%,90%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(3000px,0,0) scaleX(3);
            transform: translate3d(3000px,0,0) scaleX(3)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(-25px,0,0) scaleX(1);
            transform: translate3d(-25px,0,0) scaleX(1)
        }

        75% {
            -webkit-transform: translate3d(10px,0,0) scaleX(.98);
            transform: translate3d(10px,0,0) scaleX(.98)
        }

        90% {
            -webkit-transform: translate3d(-5px,0,0) scaleX(.995);
            transform: translate3d(-5px,0,0) scaleX(.995)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes bounceInRight {
        0%,60%,75%,90%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(3000px,0,0) scaleX(3);
            transform: translate3d(3000px,0,0) scaleX(3)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(-25px,0,0) scaleX(1);
            transform: translate3d(-25px,0,0) scaleX(1)
        }

        75% {
            -webkit-transform: translate3d(10px,0,0) scaleX(.98);
            transform: translate3d(10px,0,0) scaleX(.98)
        }

        90% {
            -webkit-transform: translate3d(-5px,0,0) scaleX(.995);
            transform: translate3d(-5px,0,0) scaleX(.995)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__bounceInRight {
        -webkit-animation-name: bounceInRight;
        animation-name: bounceInRight
    }

    @-webkit-keyframes bounceInUp {
        0%,60%,75%,90%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,3000px,0) scaleY(5);
            transform: translate3d(0,3000px,0) scaleY(5)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
            transform: translate3d(0,-20px,0) scaleY(.9)
        }

        75% {
            -webkit-transform: translate3d(0,10px,0) scaleY(.95);
            transform: translate3d(0,10px,0) scaleY(.95)
        }

        90% {
            -webkit-transform: translate3d(0,-5px,0) scaleY(.985);
            transform: translate3d(0,-5px,0) scaleY(.985)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes bounceInUp {
        0%,60%,75%,90%,to {
            -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
            animation-timing-function: cubic-bezier(.215,.61,.355,1)
        }

        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,3000px,0) scaleY(5);
            transform: translate3d(0,3000px,0) scaleY(5)
        }

        60% {
            opacity: 1;
            -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
            transform: translate3d(0,-20px,0) scaleY(.9)
        }

        75% {
            -webkit-transform: translate3d(0,10px,0) scaleY(.95);
            transform: translate3d(0,10px,0) scaleY(.95)
        }

        90% {
            -webkit-transform: translate3d(0,-5px,0) scaleY(.985);
            transform: translate3d(0,-5px,0) scaleY(.985)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__bounceInUp {
        -webkit-animation-name: bounceInUp;
        animation-name: bounceInUp
    }

    @-webkit-keyframes bounceOut {
        20% {
            -webkit-transform: scale3d(.9,.9,.9);
            transform: scale3d(.9,.9,.9)
        }

        50%,55% {
            opacity: 1;
            -webkit-transform: scale3d(1.1,1.1,1.1);
            transform: scale3d(1.1,1.1,1.1)
        }

        to {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
        }
    }

    @keyframes bounceOut {
        20% {
            -webkit-transform: scale3d(.9,.9,.9);
            transform: scale3d(.9,.9,.9)
        }

        50%,55% {
            opacity: 1;
            -webkit-transform: scale3d(1.1,1.1,1.1);
            transform: scale3d(1.1,1.1,1.1)
        }

        to {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
        }
    }

    .animate__bounceOut {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
        -webkit-animation-duration: calc(var(--animate-duration)*0.75);
        animation-duration: calc(var(--animate-duration)*0.75);
        -webkit-animation-name: bounceOut;
        animation-name: bounceOut
    }

    @-webkit-keyframes bounceOutDown {
        20% {
            -webkit-transform: translate3d(0,10px,0) scaleY(.985);
            transform: translate3d(0,10px,0) scaleY(.985)
        }

        40%,45% {
            opacity: 1;
            -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
            transform: translate3d(0,-20px,0) scaleY(.9)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,2000px,0) scaleY(3);
            transform: translate3d(0,2000px,0) scaleY(3)
        }
    }

    @keyframes bounceOutDown {
        20% {
            -webkit-transform: translate3d(0,10px,0) scaleY(.985);
            transform: translate3d(0,10px,0) scaleY(.985)
        }

        40%,45% {
            opacity: 1;
            -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
            transform: translate3d(0,-20px,0) scaleY(.9)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,2000px,0) scaleY(3);
            transform: translate3d(0,2000px,0) scaleY(3)
        }
    }

    .animate__bounceOutDown {
        -webkit-animation-name: bounceOutDown;
        animation-name: bounceOutDown
    }

    @-webkit-keyframes bounceOutLeft {
        20% {
            opacity: 1;
            -webkit-transform: translate3d(20px,0,0) scaleX(.9);
            transform: translate3d(20px,0,0) scaleX(.9)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-2000px,0,0) scaleX(2);
            transform: translate3d(-2000px,0,0) scaleX(2)
        }
    }

    @keyframes bounceOutLeft {
        20% {
            opacity: 1;
            -webkit-transform: translate3d(20px,0,0) scaleX(.9);
            transform: translate3d(20px,0,0) scaleX(.9)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-2000px,0,0) scaleX(2);
            transform: translate3d(-2000px,0,0) scaleX(2)
        }
    }

    .animate__bounceOutLeft {
        -webkit-animation-name: bounceOutLeft;
        animation-name: bounceOutLeft
    }

    @-webkit-keyframes bounceOutRight {
        20% {
            opacity: 1;
            -webkit-transform: translate3d(-20px,0,0) scaleX(.9);
            transform: translate3d(-20px,0,0) scaleX(.9)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(2000px,0,0) scaleX(2);
            transform: translate3d(2000px,0,0) scaleX(2)
        }
    }

    @keyframes bounceOutRight {
        20% {
            opacity: 1;
            -webkit-transform: translate3d(-20px,0,0) scaleX(.9);
            transform: translate3d(-20px,0,0) scaleX(.9)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(2000px,0,0) scaleX(2);
            transform: translate3d(2000px,0,0) scaleX(2)
        }
    }

    .animate__bounceOutRight {
        -webkit-animation-name: bounceOutRight;
        animation-name: bounceOutRight
    }

    @-webkit-keyframes bounceOutUp {
        20% {
            -webkit-transform: translate3d(0,-10px,0) scaleY(.985);
            transform: translate3d(0,-10px,0) scaleY(.985)
        }

        40%,45% {
            opacity: 1;
            -webkit-transform: translate3d(0,20px,0) scaleY(.9);
            transform: translate3d(0,20px,0) scaleY(.9)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,-2000px,0) scaleY(3);
            transform: translate3d(0,-2000px,0) scaleY(3)
        }
    }

    @keyframes bounceOutUp {
        20% {
            -webkit-transform: translate3d(0,-10px,0) scaleY(.985);
            transform: translate3d(0,-10px,0) scaleY(.985)
        }

        40%,45% {
            opacity: 1;
            -webkit-transform: translate3d(0,20px,0) scaleY(.9);
            transform: translate3d(0,20px,0) scaleY(.9)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,-2000px,0) scaleY(3);
            transform: translate3d(0,-2000px,0) scaleY(3)
        }
    }

    .animate__bounceOutUp {
        -webkit-animation-name: bounceOutUp;
        animation-name: bounceOutUp
    }

    @-webkit-keyframes fadeIn {
        0% {
            opacity: 0
        }

        to {
            opacity: 1
        }
    }

    @keyframes fadeIn {
        0% {
            opacity: 0
        }

        to {
            opacity: 1
        }
    }

    .animate__fadeIn {
        -webkit-animation-name: fadeIn;
        animation-name: fadeIn
    }

    @-webkit-keyframes fadeInDown {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInDown {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInDown {
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown
    }

    @-webkit-keyframes fadeInDownBig {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,-2000px,0);
            transform: translate3d(0,-2000px,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInDownBig {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,-2000px,0);
            transform: translate3d(0,-2000px,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInDownBig {
        -webkit-animation-name: fadeInDownBig;
        animation-name: fadeInDownBig
    }

    @-webkit-keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInLeft {
        -webkit-animation-name: fadeInLeft;
        animation-name: fadeInLeft
    }

    @-webkit-keyframes fadeInLeftBig {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-2000px,0,0);
            transform: translate3d(-2000px,0,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInLeftBig {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-2000px,0,0);
            transform: translate3d(-2000px,0,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInLeftBig {
        -webkit-animation-name: fadeInLeftBig;
        animation-name: fadeInLeftBig
    }

    @-webkit-keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInRight {
        -webkit-animation-name: fadeInRight;
        animation-name: fadeInRight
    }

    @-webkit-keyframes fadeInRightBig {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(2000px,0,0);
            transform: translate3d(2000px,0,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInRightBig {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(2000px,0,0);
            transform: translate3d(2000px,0,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInRightBig {
        -webkit-animation-name: fadeInRightBig;
        animation-name: fadeInRightBig
    }

    @-webkit-keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInUp {
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp
    }

    @-webkit-keyframes fadeInUpBig {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,2000px,0);
            transform: translate3d(0,2000px,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInUpBig {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0,2000px,0);
            transform: translate3d(0,2000px,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInUpBig {
        -webkit-animation-name: fadeInUpBig;
        animation-name: fadeInUpBig
    }

    @-webkit-keyframes fadeInTopLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%,-100%,0);
            transform: translate3d(-100%,-100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInTopLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%,-100%,0);
            transform: translate3d(-100%,-100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInTopLeft {
        -webkit-animation-name: fadeInTopLeft;
        animation-name: fadeInTopLeft
    }

    @-webkit-keyframes fadeInTopRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%,-100%,0);
            transform: translate3d(100%,-100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInTopRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%,-100%,0);
            transform: translate3d(100%,-100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInTopRight {
        -webkit-animation-name: fadeInTopRight;
        animation-name: fadeInTopRight
    }

    @-webkit-keyframes fadeInBottomLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%,100%,0);
            transform: translate3d(-100%,100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInBottomLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%,100%,0);
            transform: translate3d(-100%,100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInBottomLeft {
        -webkit-animation-name: fadeInBottomLeft;
        animation-name: fadeInBottomLeft
    }

    @-webkit-keyframes fadeInBottomRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%,100%,0);
            transform: translate3d(100%,100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes fadeInBottomRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(100%,100%,0);
            transform: translate3d(100%,100%,0)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__fadeInBottomRight {
        -webkit-animation-name: fadeInBottomRight;
        animation-name: fadeInBottomRight
    }

    @-webkit-keyframes fadeOut {
        0% {
            opacity: 1
        }

        to {
            opacity: 0
        }
    }

    @keyframes fadeOut {
        0% {
            opacity: 1
        }

        to {
            opacity: 0
        }
    }

    .animate__fadeOut {
        -webkit-animation-name: fadeOut;
        animation-name: fadeOut
    }

    @-webkit-keyframes fadeOutDown {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0)
        }
    }

    @keyframes fadeOutDown {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0)
        }
    }

    .animate__fadeOutDown {
        -webkit-animation-name: fadeOutDown;
        animation-name: fadeOutDown
    }

    @-webkit-keyframes fadeOutDownBig {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,2000px,0);
            transform: translate3d(0,2000px,0)
        }
    }

    @keyframes fadeOutDownBig {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,2000px,0);
            transform: translate3d(0,2000px,0)
        }
    }

    .animate__fadeOutDownBig {
        -webkit-animation-name: fadeOutDownBig;
        animation-name: fadeOutDownBig
    }

    @-webkit-keyframes fadeOutLeft {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0)
        }
    }

    @keyframes fadeOutLeft {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0)
        }
    }

    .animate__fadeOutLeft {
        -webkit-animation-name: fadeOutLeft;
        animation-name: fadeOutLeft
    }

    @-webkit-keyframes fadeOutLeftBig {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-2000px,0,0);
            transform: translate3d(-2000px,0,0)
        }
    }

    @keyframes fadeOutLeftBig {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-2000px,0,0);
            transform: translate3d(-2000px,0,0)
        }
    }

    .animate__fadeOutLeftBig {
        -webkit-animation-name: fadeOutLeftBig;
        animation-name: fadeOutLeftBig
    }

    @-webkit-keyframes fadeOutRight {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0)
        }
    }

    @keyframes fadeOutRight {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0)
        }
    }

    .animate__fadeOutRight {
        -webkit-animation-name: fadeOutRight;
        animation-name: fadeOutRight
    }

    @-webkit-keyframes fadeOutRightBig {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(2000px,0,0);
            transform: translate3d(2000px,0,0)
        }
    }

    @keyframes fadeOutRightBig {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(2000px,0,0);
            transform: translate3d(2000px,0,0)
        }
    }

    .animate__fadeOutRightBig {
        -webkit-animation-name: fadeOutRightBig;
        animation-name: fadeOutRightBig
    }

    @-webkit-keyframes fadeOutUp {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0)
        }
    }

    @keyframes fadeOutUp {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0)
        }
    }

    .animate__fadeOutUp {
        -webkit-animation-name: fadeOutUp;
        animation-name: fadeOutUp
    }

    @-webkit-keyframes fadeOutUpBig {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,-2000px,0);
            transform: translate3d(0,-2000px,0)
        }
    }

    @keyframes fadeOutUpBig {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(0,-2000px,0);
            transform: translate3d(0,-2000px,0)
        }
    }

    .animate__fadeOutUpBig {
        -webkit-animation-name: fadeOutUpBig;
        animation-name: fadeOutUpBig
    }

    @-webkit-keyframes fadeOutTopLeft {
        0% {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-100%,-100%,0);
            transform: translate3d(-100%,-100%,0)
        }
    }

    @keyframes fadeOutTopLeft {
        0% {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-100%,-100%,0);
            transform: translate3d(-100%,-100%,0)
        }
    }

    .animate__fadeOutTopLeft {
        -webkit-animation-name: fadeOutTopLeft;
        animation-name: fadeOutTopLeft
    }

    @-webkit-keyframes fadeOutTopRight {
        0% {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(100%,-100%,0);
            transform: translate3d(100%,-100%,0)
        }
    }

    @keyframes fadeOutTopRight {
        0% {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(100%,-100%,0);
            transform: translate3d(100%,-100%,0)
        }
    }

    .animate__fadeOutTopRight {
        -webkit-animation-name: fadeOutTopRight;
        animation-name: fadeOutTopRight
    }

    @-webkit-keyframes fadeOutBottomRight {
        0% {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(100%,100%,0);
            transform: translate3d(100%,100%,0)
        }
    }

    @keyframes fadeOutBottomRight {
        0% {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(100%,100%,0);
            transform: translate3d(100%,100%,0)
        }
    }

    .animate__fadeOutBottomRight {
        -webkit-animation-name: fadeOutBottomRight;
        animation-name: fadeOutBottomRight
    }

    @-webkit-keyframes fadeOutBottomLeft {
        0% {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-100%,100%,0);
            transform: translate3d(-100%,100%,0)
        }
    }

    @keyframes fadeOutBottomLeft {
        0% {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(-100%,100%,0);
            transform: translate3d(-100%,100%,0)
        }
    }

    .animate__fadeOutBottomLeft {
        -webkit-animation-name: fadeOutBottomLeft;
        animation-name: fadeOutBottomLeft
    }

    @-webkit-keyframes flip {
        0% {
            -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
            transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
            -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out
        }

        40% {
            -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
            transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
            -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out
        }

        50% {
            -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
            transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }

        80% {
            -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
            transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }

        to {
            -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
            transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }
    }

    @keyframes flip {
        0% {
            -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
            transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
            -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out
        }

        40% {
            -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
            transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
            -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out
        }

        50% {
            -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
            transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }

        80% {
            -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
            transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }

        to {
            -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
            transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }
    }

    .animate__animated.animate__flip {
        -webkit-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-animation-name: flip;
        animation-name: flip
    }

    @-webkit-keyframes flipInX {
        0% {
            -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
            opacity: 0
        }

        40% {
            -webkit-transform: perspective(400px) rotateX(-20deg);
            transform: perspective(400px) rotateX(-20deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }

        60% {
            -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg);
            opacity: 1
        }

        80% {
            -webkit-transform: perspective(400px) rotateX(-5deg);
            transform: perspective(400px) rotateX(-5deg)
        }

        to {
            -webkit-transform: perspective(400px);
            transform: perspective(400px)
        }
    }

    @keyframes flipInX {
        0% {
            -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
            opacity: 0
        }

        40% {
            -webkit-transform: perspective(400px) rotateX(-20deg);
            transform: perspective(400px) rotateX(-20deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }

        60% {
            -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg);
            opacity: 1
        }

        80% {
            -webkit-transform: perspective(400px) rotateX(-5deg);
            transform: perspective(400px) rotateX(-5deg)
        }

        to {
            -webkit-transform: perspective(400px);
            transform: perspective(400px)
        }
    }

    .animate__flipInX {
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
        -webkit-animation-name: flipInX;
        animation-name: flipInX
    }

    @-webkit-keyframes flipInY {
        0% {
            -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
            opacity: 0
        }

        40% {
            -webkit-transform: perspective(400px) rotateY(-20deg);
            transform: perspective(400px) rotateY(-20deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }

        60% {
            -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
            opacity: 1
        }

        80% {
            -webkit-transform: perspective(400px) rotateY(-5deg);
            transform: perspective(400px) rotateY(-5deg)
        }

        to {
            -webkit-transform: perspective(400px);
            transform: perspective(400px)
        }
    }

    @keyframes flipInY {
        0% {
            -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
            opacity: 0
        }

        40% {
            -webkit-transform: perspective(400px) rotateY(-20deg);
            transform: perspective(400px) rotateY(-20deg);
            -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in
        }

        60% {
            -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
            opacity: 1
        }

        80% {
            -webkit-transform: perspective(400px) rotateY(-5deg);
            transform: perspective(400px) rotateY(-5deg)
        }

        to {
            -webkit-transform: perspective(400px);
            transform: perspective(400px)
        }
    }

    .animate__flipInY {
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
        -webkit-animation-name: flipInY;
        animation-name: flipInY
    }

    @-webkit-keyframes flipOutX {
        0% {
            -webkit-transform: perspective(400px);
            transform: perspective(400px)
        }

        30% {
            -webkit-transform: perspective(400px) rotateX(-20deg);
            transform: perspective(400px) rotateX(-20deg);
            opacity: 1
        }

        to {
            -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
            opacity: 0
        }
    }

    @keyframes flipOutX {
        0% {
            -webkit-transform: perspective(400px);
            transform: perspective(400px)
        }

        30% {
            -webkit-transform: perspective(400px) rotateX(-20deg);
            transform: perspective(400px) rotateX(-20deg);
            opacity: 1
        }

        to {
            -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
            opacity: 0
        }
    }

    .animate__flipOutX {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
        -webkit-animation-duration: calc(var(--animate-duration)*0.75);
        animation-duration: calc(var(--animate-duration)*0.75);
        -webkit-animation-name: flipOutX;
        animation-name: flipOutX;
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important
    }

    @-webkit-keyframes flipOutY {
        0% {
            -webkit-transform: perspective(400px);
            transform: perspective(400px)
        }

        30% {
            -webkit-transform: perspective(400px) rotateY(-15deg);
            transform: perspective(400px) rotateY(-15deg);
            opacity: 1
        }

        to {
            -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
            opacity: 0
        }
    }

    @keyframes flipOutY {
        0% {
            -webkit-transform: perspective(400px);
            transform: perspective(400px)
        }

        30% {
            -webkit-transform: perspective(400px) rotateY(-15deg);
            transform: perspective(400px) rotateY(-15deg);
            opacity: 1
        }

        to {
            -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
            opacity: 0
        }
    }

    .animate__flipOutY {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
        -webkit-animation-duration: calc(var(--animate-duration)*0.75);
        animation-duration: calc(var(--animate-duration)*0.75);
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
        -webkit-animation-name: flipOutY;
        animation-name: flipOutY
    }

    @-webkit-keyframes lightSpeedInRight {
        0% {
            -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
            transform: translate3d(100%,0,0) skewX(-30deg);
            opacity: 0
        }

        60% {
            -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
            opacity: 1
        }

        80% {
            -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes lightSpeedInRight {
        0% {
            -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
            transform: translate3d(100%,0,0) skewX(-30deg);
            opacity: 0
        }

        60% {
            -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
            opacity: 1
        }

        80% {
            -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__lightSpeedInRight {
        -webkit-animation-name: lightSpeedInRight;
        animation-name: lightSpeedInRight;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    @-webkit-keyframes lightSpeedInLeft {
        0% {
            -webkit-transform: translate3d(-100%,0,0) skewX(30deg);
            transform: translate3d(-100%,0,0) skewX(30deg);
            opacity: 0
        }

        60% {
            -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
            opacity: 1
        }

        80% {
            -webkit-transform: skewX(5deg);
            transform: skewX(5deg)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes lightSpeedInLeft {
        0% {
            -webkit-transform: translate3d(-100%,0,0) skewX(30deg);
            transform: translate3d(-100%,0,0) skewX(30deg);
            opacity: 0
        }

        60% {
            -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
            opacity: 1
        }

        80% {
            -webkit-transform: skewX(5deg);
            transform: skewX(5deg)
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__lightSpeedInLeft {
        -webkit-animation-name: lightSpeedInLeft;
        animation-name: lightSpeedInLeft;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    @-webkit-keyframes lightSpeedOutRight {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: translate3d(100%,0,0) skewX(30deg);
            transform: translate3d(100%,0,0) skewX(30deg);
            opacity: 0
        }
    }

    @keyframes lightSpeedOutRight {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: translate3d(100%,0,0) skewX(30deg);
            transform: translate3d(100%,0,0) skewX(30deg);
            opacity: 0
        }
    }

    .animate__lightSpeedOutRight {
        -webkit-animation-name: lightSpeedOutRight;
        animation-name: lightSpeedOutRight;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    @-webkit-keyframes lightSpeedOutLeft {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: translate3d(-100%,0,0) skewX(-30deg);
            transform: translate3d(-100%,0,0) skewX(-30deg);
            opacity: 0
        }
    }

    @keyframes lightSpeedOutLeft {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: translate3d(-100%,0,0) skewX(-30deg);
            transform: translate3d(-100%,0,0) skewX(-30deg);
            opacity: 0
        }
    }

    .animate__lightSpeedOutLeft {
        -webkit-animation-name: lightSpeedOutLeft;
        animation-name: lightSpeedOutLeft;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    @-webkit-keyframes rotateIn {
        0% {
            -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    @keyframes rotateIn {
        0% {
            -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    .animate__rotateIn {
        -webkit-animation-name: rotateIn;
        animation-name: rotateIn;
        -webkit-transform-origin: center;
        transform-origin: center
    }

    @-webkit-keyframes rotateInDownLeft {
        0% {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    @keyframes rotateInDownLeft {
        0% {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    .animate__rotateInDownLeft {
        -webkit-animation-name: rotateInDownLeft;
        animation-name: rotateInDownLeft;
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }

    @-webkit-keyframes rotateInDownRight {
        0% {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    @keyframes rotateInDownRight {
        0% {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    .animate__rotateInDownRight {
        -webkit-animation-name: rotateInDownRight;
        animation-name: rotateInDownRight;
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    @-webkit-keyframes rotateInUpLeft {
        0% {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    @keyframes rotateInUpLeft {
        0% {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    .animate__rotateInUpLeft {
        -webkit-animation-name: rotateInUpLeft;
        animation-name: rotateInUpLeft;
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }

    @-webkit-keyframes rotateInUpRight {
        0% {
            -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    @keyframes rotateInUpRight {
        0% {
            -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
            opacity: 0
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1
        }
    }

    .animate__rotateInUpRight {
        -webkit-animation-name: rotateInUpRight;
        animation-name: rotateInUpRight;
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    @-webkit-keyframes rotateOut {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
            opacity: 0
        }
    }

    @keyframes rotateOut {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
            opacity: 0
        }
    }

    .animate__rotateOut {
        -webkit-animation-name: rotateOut;
        animation-name: rotateOut;
        -webkit-transform-origin: center;
        transform-origin: center
    }

    @-webkit-keyframes rotateOutDownLeft {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            opacity: 0
        }
    }

    @keyframes rotateOutDownLeft {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            opacity: 0
        }
    }

    .animate__rotateOutDownLeft {
        -webkit-animation-name: rotateOutDownLeft;
        animation-name: rotateOutDownLeft;
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }

    @-webkit-keyframes rotateOutDownRight {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            opacity: 0
        }
    }

    @keyframes rotateOutDownRight {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            opacity: 0
        }
    }

    .animate__rotateOutDownRight {
        -webkit-animation-name: rotateOutDownRight;
        animation-name: rotateOutDownRight;
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    @-webkit-keyframes rotateOutUpLeft {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            opacity: 0
        }
    }

    @keyframes rotateOutUpLeft {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            opacity: 0
        }
    }

    .animate__rotateOutUpLeft {
        -webkit-animation-name: rotateOutUpLeft;
        animation-name: rotateOutUpLeft;
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom
    }

    @-webkit-keyframes rotateOutUpRight {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
            opacity: 0
        }
    }

    @keyframes rotateOutUpRight {
        0% {
            opacity: 1
        }

        to {
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
            opacity: 0
        }
    }

    .animate__rotateOutUpRight {
        -webkit-animation-name: rotateOutUpRight;
        animation-name: rotateOutUpRight;
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom
    }

    @-webkit-keyframes hinge {
        0% {
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out
        }

        20%,60% {
            -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out
        }

        40%,80% {
            -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
            opacity: 1
        }

        to {
            -webkit-transform: translate3d(0,700px,0);
            transform: translate3d(0,700px,0);
            opacity: 0
        }
    }

    @keyframes hinge {
        0% {
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out
        }

        20%,60% {
            -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out
        }

        40%,80% {
            -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
            opacity: 1
        }

        to {
            -webkit-transform: translate3d(0,700px,0);
            transform: translate3d(0,700px,0);
            opacity: 0
        }
    }

    .animate__hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-duration: calc(var(--animate-duration)*2);
        animation-duration: calc(var(--animate-duration)*2);
        -webkit-animation-name: hinge;
        animation-name: hinge;
        -webkit-transform-origin: top left;
        transform-origin: top left
    }

    @-webkit-keyframes jackInTheBox {
        0% {
            opacity: 0;
            -webkit-transform: scale(.1) rotate(30deg);
            transform: scale(.1) rotate(30deg);
            -webkit-transform-origin: center bottom;
            transform-origin: center bottom
        }

        50% {
            -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg)
        }

        70% {
            -webkit-transform: rotate(3deg);
            transform: rotate(3deg)
        }

        to {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1)
        }
    }

    @keyframes jackInTheBox {
        0% {
            opacity: 0;
            -webkit-transform: scale(.1) rotate(30deg);
            transform: scale(.1) rotate(30deg);
            -webkit-transform-origin: center bottom;
            transform-origin: center bottom
        }

        50% {
            -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg)
        }

        70% {
            -webkit-transform: rotate(3deg);
            transform: rotate(3deg)
        }

        to {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1)
        }
    }

    .animate__jackInTheBox {
        -webkit-animation-name: jackInTheBox;
        animation-name: jackInTheBox
    }

    @-webkit-keyframes rollIn {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
            transform: translate3d(-100%,0,0) rotate(-120deg)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes rollIn {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
            transform: translate3d(-100%,0,0) rotate(-120deg)
        }

        to {
            opacity: 1;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__rollIn {
        -webkit-animation-name: rollIn;
        animation-name: rollIn
    }

    @-webkit-keyframes rollOut {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(100%,0,0) rotate(120deg);
            transform: translate3d(100%,0,0) rotate(120deg)
        }
    }

    @keyframes rollOut {
        0% {
            opacity: 1
        }

        to {
            opacity: 0;
            -webkit-transform: translate3d(100%,0,0) rotate(120deg);
            transform: translate3d(100%,0,0) rotate(120deg)
        }
    }

    .animate__rollOut {
        -webkit-animation-name: rollOut;
        animation-name: rollOut
    }

    @-webkit-keyframes zoomIn {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
        }

        50% {
            opacity: 1
        }
    }

    @keyframes zoomIn {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
        }

        50% {
            opacity: 1
        }
    }

    .animate__zoomIn {
        -webkit-animation-name: zoomIn;
        animation-name: zoomIn
    }

    @-webkit-keyframes zoomInDown {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    @keyframes zoomInDown {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    .animate__zoomInDown {
        -webkit-animation-name: zoomInDown;
        animation-name: zoomInDown
    }

    @-webkit-keyframes zoomInLeft {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
            transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
            transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    @keyframes zoomInLeft {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
            transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
            transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    .animate__zoomInLeft {
        -webkit-animation-name: zoomInLeft;
        animation-name: zoomInLeft
    }

    @-webkit-keyframes zoomInRight {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
            transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
            transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    @keyframes zoomInRight {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
            transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
            transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    .animate__zoomInRight {
        -webkit-animation-name: zoomInRight;
        animation-name: zoomInRight
    }

    @-webkit-keyframes zoomInUp {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    @keyframes zoomInUp {
        0% {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        60% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    .animate__zoomInUp {
        -webkit-animation-name: zoomInUp;
        animation-name: zoomInUp
    }

    @-webkit-keyframes zoomOut {
        0% {
            opacity: 1
        }

        50% {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
        }

        to {
            opacity: 0
        }
    }

    @keyframes zoomOut {
        0% {
            opacity: 1
        }

        50% {
            opacity: 0;
            -webkit-transform: scale3d(.3,.3,.3);
            transform: scale3d(.3,.3,.3)
        }

        to {
            opacity: 0
        }
    }

    .animate__zoomOut {
        -webkit-animation-name: zoomOut;
        animation-name: zoomOut
    }

    @-webkit-keyframes zoomOutDown {
        40% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        to {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    @keyframes zoomOutDown {
        40% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        to {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    .animate__zoomOutDown {
        -webkit-animation-name: zoomOutDown;
        animation-name: zoomOutDown;
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    @-webkit-keyframes zoomOutLeft {
        40% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
            transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
        }

        to {
            opacity: 0;
            -webkit-transform: scale(.1) translate3d(-2000px,0,0);
            transform: scale(.1) translate3d(-2000px,0,0)
        }
    }

    @keyframes zoomOutLeft {
        40% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
            transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
        }

        to {
            opacity: 0;
            -webkit-transform: scale(.1) translate3d(-2000px,0,0);
            transform: scale(.1) translate3d(-2000px,0,0)
        }
    }

    .animate__zoomOutLeft {
        -webkit-animation-name: zoomOutLeft;
        animation-name: zoomOutLeft;
        -webkit-transform-origin: left center;
        transform-origin: left center
    }

    @-webkit-keyframes zoomOutRight {
        40% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
            transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
        }

        to {
            opacity: 0;
            -webkit-transform: scale(.1) translate3d(2000px,0,0);
            transform: scale(.1) translate3d(2000px,0,0)
        }
    }

    @keyframes zoomOutRight {
        40% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
            transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
        }

        to {
            opacity: 0;
            -webkit-transform: scale(.1) translate3d(2000px,0,0);
            transform: scale(.1) translate3d(2000px,0,0)
        }
    }

    .animate__zoomOutRight {
        -webkit-animation-name: zoomOutRight;
        animation-name: zoomOutRight;
        -webkit-transform-origin: right center;
        transform-origin: right center
    }

    @-webkit-keyframes zoomOutUp {
        40% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        to {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    @keyframes zoomOutUp {
        40% {
            opacity: 1;
            -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
            transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
            -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
            animation-timing-function: cubic-bezier(.55,.055,.675,.19)
        }

        to {
            opacity: 0;
            -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
            transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
            -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
            animation-timing-function: cubic-bezier(.175,.885,.32,1)
        }
    }

    .animate__zoomOutUp {
        -webkit-animation-name: zoomOutUp;
        animation-name: zoomOutUp;
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    @-webkit-keyframes slideInDown {
        0% {
            -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0);
            visibility: visible
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes slideInDown {
        0% {
            -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0);
            visibility: visible
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__slideInDown {
        -webkit-animation-name: slideInDown;
        animation-name: slideInDown
    }

    @-webkit-keyframes slideInLeft {
        0% {
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
            visibility: visible
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes slideInLeft {
        0% {
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0);
            visibility: visible
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__slideInLeft {
        -webkit-animation-name: slideInLeft;
        animation-name: slideInLeft
    }

    @-webkit-keyframes slideInRight {
        0% {
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
            visibility: visible
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes slideInRight {
        0% {
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0);
            visibility: visible
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__slideInRight {
        -webkit-animation-name: slideInRight;
        animation-name: slideInRight
    }

    @-webkit-keyframes slideInUp {
        0% {
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
            visibility: visible
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    @keyframes slideInUp {
        0% {
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0);
            visibility: visible
        }

        to {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
    }

    .animate__slideInUp {
        -webkit-animation-name: slideInUp;
        animation-name: slideInUp
    }

    @-webkit-keyframes slideOutDown {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            visibility: hidden;
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0)
        }
    }

    @keyframes slideOutDown {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            visibility: hidden;
            -webkit-transform: translate3d(0,100%,0);
            transform: translate3d(0,100%,0)
        }
    }

    .animate__slideOutDown {
        -webkit-animation-name: slideOutDown;
        animation-name: slideOutDown
    }

    @-webkit-keyframes slideOutLeft {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            visibility: hidden;
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0)
        }
    }

    @keyframes slideOutLeft {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            visibility: hidden;
            -webkit-transform: translate3d(-100%,0,0);
            transform: translate3d(-100%,0,0)
        }
    }

    .animate__slideOutLeft {
        -webkit-animation-name: slideOutLeft;
        animation-name: slideOutLeft
    }

    @-webkit-keyframes slideOutRight {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            visibility: hidden;
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0)
        }
    }

    @keyframes slideOutRight {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            visibility: hidden;
            -webkit-transform: translate3d(100%,0,0);
            transform: translate3d(100%,0,0)
        }
    }

    .animate__slideOutRight {
        -webkit-animation-name: slideOutRight;
        animation-name: slideOutRight
    }

    @-webkit-keyframes slideOutUp {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            visibility: hidden;
            -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0)
        }
    }

    @keyframes slideOutUp {
        0% {
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }

        to {
            visibility: hidden;
            -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0)
        }
    }

    .animate__slideOutUp {
        -webkit-animation-name: slideOutUp;
        animation-name: slideOutUp
    }
