body {
    background-color: var(--bodyBg);
    background-repeat: no-repeat;
}

@media screen and (max-width:992px) {
    body:before {
        top: 59px !important;
    }
}

/* Scrollbar stili */
::-webkit-scrollbar {
    width: 8px;
    height: 3px;
}

/* Scrollbar thumb (kaydırma tuşesi) stili */
::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 8px;
}

content {
    display: block;
}

.sl-overlay {
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    background-color: #78787861 !important;
    opacity: 1 !important;
}

.sl-wrapper {
    opacity: 0 !important;
    transition: .3s !important;
}

.hidden-scroll .sl-wrapper {
    opacity: 1 !important;
}

.sl-wrapper .sl-navigation button {
    color: var(--primaryColor) !important;
}

.sl-wrapper .sl-close {
    background-color: var(--primaryColor) !important;
    padding: 5px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    color: White !important;
    font-size: 30px !important;
    line-height: 30px !important;
}

.sl-wrapper .sl-image .sl-caption {
    color: var(--primaryColor) !important;
    background: transparent !important;
    text-align: center;
    font-weight: 800;
    font-size: 30px !important;
}

.hidden {
    display: none;
}


* {
    margin: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;

    text-indent: 0;
    margin-bottom: 0;
}

.center-w {
    display: table;
    margin: auto;
}

.center-h {
    display: flex;
    align-items: center;
}

.center-content {
    width: 100%;
}

section {
    overflow-x: clip;
    max-width: 100vw;
}


.owl-carousel .owl-next,
.owl-carousel .owl-prev {
    position: absolute;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--primaryColor) !important;
    color: white !important;
    border-radius: 100% !important;
    font-size: 20px !important;
    line-height: 20px !important;
    opacity: .5;
    transition: .3s;
}

.owl-carousel .owl-next:hover,
.owl-carousel .owl-prev:hover {
    opacity: 1;
}

.owl-carousel .owl-prev {
    left: -7%;
}

.owl-carousel .owl-next {
    right: -7%;
}

/* Dropdoen Menü Basic */
.drop {
    position: relative;
}

.drop .toggle {
    /*line-height: 40px;*/
    display: flex;
    gap: 5px;
    position: relative;
}

.drop .toggle>span {
    font-size: 16px;
}

.drop .toggle.notLogged {
    background-color: var(--primaryColor);
    border-radius: var(--radius);
    padding: 10px 25px;
    margin-left: 15px;
    animation: pulseDanger 2s infinite;
}

.drop .toggle:after {
    font-family: uicons-regular-rounded !important;
    content: "\e07c";
    transform: scale(.7);
}

.drop .toggle:before {
    font-family: 'default' !important;
    content: "\e995";
    position: absolute;
    left: calc(50% - 9px);
    font-size: 18px;
    line-height: 18px;
    bottom: -28px;
    color: var(--primaryColor);
    transition: .2s;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
}

.drop:hover .toggle:before {
    transform: translateY(0px);
    opacity: 1;
}

.drop .sub {
    position: absolute;
    height: 0px;
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    padding-top: 0px;
    transition: .3s;
    pointer-events: none;
}

.drop:hover {
    z-index: 15;
}

.drop:hover>.sub {
    height: auto;
    min-width: 100%;
    transform: translateY(0px);
    padding-top: 24px;
    opacity: 1;
    pointer-events: auto;
}

.drop:hover>.toggle {
    border: none !important;
}

.drop .sub .sub-content {
    position: relative;
    background-color: var(--primaryColor);
    border-radius: 15px;
    overflow: hidden;
}

.drop .sub .sub-content ul li:last-child a {
    border: none;
}



.drop .sub .sub-content ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.drop .sub .sub-content ul li {
    width: 100%;
}

.drop .sub .sub-content ul li a {
    padding: 0px 15px;
    line-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    gap: 10px;
    color: White;
    transition: .2s;
    white-space: nowrap;
    font-weight: 400;
    font-size: 15px;
}

.drop .sub .sub-content ul li a i {
    line-height: 0;
}

.drop .sub .sub-content ul li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Dropdoen Menü Basic End */


/* Form */
.inputBox,
.labelBox {
    position: relative;
    margin-bottom: 25px;
}

.inputBox label {
    position: absolute;
    width: initial;
    height: 100%;
    display: flex;
    align-items: center;
    text-indent: 26px;
    transition: .3s;
    transform: translateY(0);
}

.inputBox.textarea label {
    position: absolute;
    width: initial;
    height: 25%;
    display: flex;
    align-items: center;
    text-indent: 26px;
    transition: .3s;
    transform: translateY(0);
    background-color: whitesmoke;
}

.inputBox:hover label,
.inputBox:focus label {
    transform: translateY(-14px);
    font-size: 12px;
}

.inputBox.textarea:hover label,
.inputBox.textarea:focus label {
    transform: translateY(0);
    height: 17%;
}

.inputBox.focusOn label {
    transform: translateY(-14px);
    font-size: 12px;
    opacity: .5;
}

.inputBox.textarea.focusOn label {
    transform: translateY(0);
    height: 17%;
}

.inputBox.selectBox label {
    width: initial;
}

.inputBox.selectBox:hover label {
    height: 20px;
    transform: translateY(9px);
}

.inputBox input,
.inputBox input[type="date"],
.inputBox textarea,
.inputBox select {
    border-radius: 10px;
    border: none;
    line-height: 20px;
    padding: 0px 25px;
    outline: none !important;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
    height: 60px;
    padding-top: 10px;
    background-color: whitesmoke;
    width: 100%;
    color: var(--textColor);
}

.inputBox select {
    padding-top: 0px;
    appearance: none;
    /* Varsayılan ok işaretini kaldır */
    background-image: url('../img/down.svg');
    /* Kendi ok simgenizi ekleyin */
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    /* Ok simgesini sağdan içeri doğru itmek için */
}

.inputBox textarea {
    height: 224px;
    padding-top: 35px;
}

.inputBox.focusOn input,
.inputBox.focusOn textarea,
.inputBox.focusOn select {
    box-shadow: 0px 0px 0px 1px var(--primaryColor) !important;
}

.inputBox.full input,
.inputBox.full textarea,
.inputBox.full select {
    box-shadow: 0px 0px 0px 1px var(--success) !important;
}

.inputBox input:-webkit-autofill {
    background-color: #e8f0fe !important;
    /* Arka plan rengi */
    background: #e8f0fe !important;
    /* Arka plan rengi */
    color: #000;
    /* Metin rengi */
    border: 1px solid #198754;
    /* Kenarlık rengi */
    transition: background-color 0.5s ease-in-out;
    /* Geçiş efekti */
}

.inputBox input:-webkit-autofill:focus {
    background-color: #cce4ff;
    /* Odaklandığında arka plan rengi */
    color: #333;
    /* Odaklandığında metin rengi */
}



label.customCheck {
    border: dashed 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 15px;
    display: flex;
    justify-content: flex-start;
    color: var(--textColor);
    cursor: pointer;
    transition: .3s;
    background-color: whitesmoke;
}

label.customCheck:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.fakeCheck {
    margin-right: 10px;
    border: solid 1px rgba(0, 0, 0, 0.2);
    width: 26px;
    height: 26px;
    border-radius: 5px;
    display: flex;
    position: relative;
    aspect-ratio: 1/1;
}

/*
label:has(input:checked)>.fakeCheck {
    border-color: var(--success) !important;
}

label:has(input:checked) {
    border: 1px solid var(--success) !important;
    font-weight: 500;
    color: var(--success) !important;
    background-color: #61b11124;
}
*/

label:has(input:checked)>.fakeCheck:before {
    font-family: 'default';
    content: "\e917";
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--success);
}

/* Form End */

/* Head */
.head {
    position: relative;
}

.head i {
    font-size: 30px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    display: flex;
    color: var(--primaryColor);
    justify-content: center;
}

.head i img {
    height: 70px;
    width: auto;
    text-align: center;
    display: block;
}

.head span {
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--textColor);
    margin-top: 10px;
    font-size: 16px;
}

.head h2 {
    color: black;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    color: var(--primaryColor);
    font-family: "Abril Fatface", serif;
}

.head {}

/* Head End */



/* ===== Form ===== */
.button {
    border-radius: var(--radius);
    padding: 0px 35px;
    line-height: 40px;
    font-weight: 400;
    width: initial;
    text-align: center;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    height: fit-content;
}

.button.fill {
    background-color: var(--primaryColor);
    color: white;
    border: solid 1px transparent;
}

.button.fill i {
    color: white;
}

.button.fill:hover {
    background-color: var(--secondaryColor) !important;
    color: white;
    border-color: var(--secondaryColor) !important;
}

.button.outline {
    border: solid 1px var(--primaryColor);
    color: var(--textColor);
    background-color: transparent;
}

.button.outline:hover {
    border-color: transparent !important;
    color: white !important;
    background-color: var(--primaryColor);
}

.button i {
    line-height: 0;
    font-size: 16px;
}

.button:hover i {
    animation: shake 3s infinite;
    color: white;
}


.head {
    text-align: center;
    margin-bottom: 50px;
}

.head h2.title {
    color: #F0F0F0;
    font-weight: 700;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    border: solid 8px #5C6C7E80;
    border-radius: var(--radius);
    padding: 0px 18%;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 0px;
}

/* ===== Form End ===== */

.col-sm-visible {
    display: none;
}

@media screen and (max-width:992px) {

    .col-sm-visible {
        display: block;
    }

    .col-sm-hidden {
        display: none !important;
    }
}


/* ===== Header ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background-color: transparent;
    transition: .5s;
}

header.sticky {
    top: -87px;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: #b50000ab;
}

header .top {
    padding: 25px 0px;
    transition: .3s;
}

header.sticky .top {
    padding: 15px 0px;
}


header .top ul {
    display: flex;
    gap: 3px;
    align-items: center;
    color: rgba(255, 255, 255, .3);
    font-size: 19px;
    line-height: 19px;
}

header .top ul a {
    color: Whitesmoke;
    opacity: .8;
}

header .top ul a:hover {
    opacity: 1;
}

header .top>div>.row>div {
    display: flex;
    align-items: center;
}

header .top .logoContent {
    justify-content: center;
    position: relative;
}

header .top .logoContent img {
    transition: .2s;
    transform-origin: left;
}

header .top .logoContent img:hover {
    transform: translateY(10px);
}

header .top .userButton {
    margin-left: auto;
}

/*
header .top .userButton li {
    display: flex;
    height: 100%;
    align-items: center;
}
*/

header .top li a {
    position: relative;
    padding: 10px;
}

header .top li a:not(.toggle):before {
    content: "";
    width: 39px;
    height: 39px;
    aspect-ratio: 1/1;
    position: absolute;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: #b50000ab;
    border-radius: 100%;
    z-index: -1;
    opacity: 0;
    transition: .2s;

    left: 0;
    top: 0;
}

header .top li a:hover:before {
    opacity: 1;
}

.searchContent {
    padding-left: 9px;
    position: relative;
    display: table;
    margin: auto;
    width: 100%;
    position: absolute;
    left: 0;
    top: 3px;
    transition: .3s;
    transform: translateX(30px);
    opacity: 0;
    pointer-events: none;
}

.searchContent form {
    margin: 0px;
}

.searchContent input {
    width: 100%;
    padding: 0px 30px;
    border-radius: var(--radius);
    border: solid 1px rgba(0, 0, 0, 0.1);
    line-height: 50px;
    background-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: none;
    outline: none;
    box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.2);
    transition: .3s;
    color: whitesmoke;
    font-weight: 300;
    text-align: center;
    font-size: 16px;
}

.searchContent:hover input {
    box-shadow: 0px 0px 0px 1px var(--primaryColor);
}

.searchContent:hover label {
    color: whitesmoke;
}

.searchContent button {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: transparent;
    aspect-ratio: 1/1;
    padding: 10px;
    display: inline-block;
    color: whitesmoke;
    transition: .3s;
    opacity: .6;
    font-weight: 600;
    border-radius: 100%;
}

.searchContent:hover button {
    color: white;
    opacity: 1;
    background-color: var(--primaryColor);
}

.searchContent button i {
    display: block;
    line-height: 15px;
}

.searchContent button:hover {
    background-color: white;
    display: inline-block;
    color: var(--primaryColor);
}

.searchContent label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: whitesmoke;
    line-height: 50px;
    font-weight: 600;
    font-size: 16px;
    opacity: .8;
    letter-spacing: .5px;
    transition: .3s;
    cursor: pointer;
    padding-left: 9px;
    z-index: 2;
    text-align: center;
}

.announcement {
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: #b5000045;
    padding: 10px 0px;
    transition: .3s;
    margin-top: -44px;
    height: 44px;
    width: 100%;
}

.announcement:hover {
    background-color: #b500008f;
}

.announcement .owl-stage {
    transition-timing-function: linear !important;
}

.announcement a {
    color: whitesmoke;
    white-space: nowrap;
    opacity: .7;
    transform: .2s;
}

.announcement a:hover {
    opacity: 1;
}

header.ann_on .announcement {
    margin-top: 0px;
}

body.cartOn .cartToggle:before,
header.ann_on .announcement_toggle:before,
header.searchOn .searchToggle:before {
    opacity: 1;
}

.nav {}

.nav nav {}

.nav nav>ul {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.nav nav ul>li>a {
    line-height: 40px;
    font-weight: 600;
    color: Whitesmoke;
    font-size: 18px;
    position: relative;
    transition: .3s;
}

header.sticky .nav nav ul>li>a {
    font-weight: 400 !important;
    font-size: 16px;
}

.nav nav ul>li>a:not(.toggle):before {
    content: "";
    width: 0;
    height: 3px;
    background-color: var(--primaryColor);
    position: absolute;
    left: 0;
    bottom: -15px;
    border-radius: 30px;
    opacity: .8;
    transition: .3s;
}

.nav nav ul>li:hover>a:not(.toggle):before {
    width: 100%;
}

header.searchOn .logoContent img {
    transform: translateX(-20px);
    opacity: 0;
}

header.searchOn .logoContent .searchContent {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

header.inpage {}

/* ===== Header End ===== */
/* ===== Headline ===== */
#headline {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    transition: 1.3s;
    transition-delay: 1s;
}

#headline.viewing {
    box-shadow: 40px 20px 0px 5px rgba(0, 0, 0, 0.1);
}

#headline:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20%;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7763480392156863) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
}

#headline .videoContent {
    overflow: hidden;
    background-color: black;
    height: 75vh;
}

#headline .videoContent:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-image: radial-gradient(#242424 40%, transparent 0);
    background-size: 3px 3px;
    opacity: .5;
}

#headline video {
    opacity: .5;
    transform: scale(1.02);
}

#headline .caption {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    left: 0;
    top: 0;
    z-index: 3;
}

#headline .caption h1 {
    color: Whitesmoke;
    font-weight: 800;
    font-size: 30px !important;
    position: relative;
    width: min-content;
    white-space: nowrap;
    transition-delay: .4s;
}

#headline .caption h1:before {
    content: "";
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    position: absolute;
    left: -20px;
    top: -20px;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: #b50000ab;
    z-index: -1;
    transform: skewX(20deg);
    border-radius: 10px;
    opacity: .8;
}

#headline .caption h2 {
    color: Whitesmoke;
    font-weight: 800;
    font-size: 50px !important;
    height: 50px;
    margin-top: 65px;
}

#headline .caption article {
    color: Whitesmoke;
    font-weight: 400;
    font-size: 16px !important;
    margin-top: 25px;
    opacity: .7;
    width: 75%;
}

#headline .caption a.button {
    margin-top: 45px;
    color: whitesmoke;
    border-color: rgba(255, 255, 255, .3);
    background-color: rgba(255, 255, 255, .1);
    line-height: 60px;
    font-weight: 500;
    letter-spacing: .3px;
    font-size: 16px;
}

#headline .caption a.button:hover {
    background-color: #b50000ab;
}

/* ===== Headline End ===== */
/* ===== Module --> Categories ===== */
#categories {
    position: relative;
    z-index: 5;
    margin-top: -120px;
}

#categories>div {
    width: 80%;
}

#categories .owl-item {
    padding-top: 5px;
    opacity: 0;
    transition: .3s;
}

#categories .owl-item.active {
    opacity: 1;
}

#categories .owl-item .visual {
    position: relative;
    aspect-ratio: 1/1;
}

#categories .owl-item .visual:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(229 229 229 / 40%);
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0px -2px 0px 0px #ffffffd4;
    z-index: -1;
    border-radius: 100%;
    transform: scale(.6);
    transition: .3s;
}

#categories .owl-item .title {
    color: var(--primaryColor);
    font-weight: 600;
    text-align: center;
    font-size: 18px !important;
    margin-top: 15px;
}

#categories .owl-item article {
    color: var(--textColor);
    font-weight: 400;
    text-align: center;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Maksimum satır sayısı */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#categories .owl-item .item:hover .visual:before {
    transform: scale(.8);
    background-color: #a40000b0;
    box-shadow: 0px -2px 0px 0px #ff2f2f;
}

#categories .owl-item .item .visual img {
    aspect-ratio: 300/300;
    display: block;
    transition: .3s;
}

#categories .owl-item .item:hover .visual img {
    transform: scale(1.2);
}


#categories .owl-item .box {
    display: block;
    transform: translateY(100px);
    transition: 1s;
    opacity: 0;
}

#categories.viewing .owl-item .box {
    transform: translateY(0px);
    opacity: 1;
}

#categories .owl-item:nth-child(1) .box {
    transition-delay: .1s;
}

#categories .owl-item:nth-child(2) .box {
    transition-delay: .3s;
}

#categories .owl-item:nth-child(3) .box {
    transition-delay: .5s;
}

#categories .owl-item:nth-child(4) .box {
    transition-delay: .7s;
}

#categories .owl-item:nth-child(5) .box {
    transition-delay: 1s;
}


.owl-dot>span {
    width: 6px !important;
    height: 6px !important;
    margin: 2px !important;
    transition: .3s !important;
}

.owl-dot.active>span {
    width: 20px !important;
    background-color: var(--primaryColor) !important;
}


/* ===== Module --> Categories End ===== */
/* ===== Module --> ShowCase ===== */
#showcase {
    /*background-color: #f5f6f7;*/
    background: #FBFBFC;
    background: linear-gradient(0deg, rgb(253 253 254) 0%, rgba(245, 246, 247, 1) 100%);
    position: relative;
}

/*
#showcase:after {
    content:"";
    position: absolute;
    left:0;
    bottom: 0;
    width: 100%;
    height: 25%;
    opacity: .5;
    background: #9FC6E3;
    background: linear-gradient(0deg, rgba(159, 198, 227, 1) 0%, rgba(245, 246, 247, 1) 100%);
    z-index: 0;
}
*/
#showcase .container {
    position: relative;
    z-index: 2;
}

.showcaseTop {
    margin-bottom: -3px;
}

#showcase .head>.row>div {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 25px;
}

#showcase .head>.row>div i {
    width: auto;
    display: flex;
    align-items: center;
}

#showcase .head>.row>div i img {
    height: 90px !important;
}

#showcase .head>.row>div h2 {
    text-align: left;
    margin-top: 0px;
    letter-spacing: .5px;
}

#showcase .head>.row>div article {
    opacity: .8;
    font-size: 15px;
    font-weight: 400;
    width: 75%;
}

/* ===== Module --> ShowCase  End===== */
/* ===== Module --> Hook ===== */
#hook {
    height: 85vh;
    position: relative;
    padding-top: 7%;
}

#hook .image {
    background-image: url(../img/farm2.png);
    background-position: top center;
    background-size: cover;

    height: 100%;
    width: 100%;
    position: absolute;
    padding-top: 7%;

    top: 0;
    left: 0;

    transition: 1.5s;
    transform: translateY(50px);
    opacity: 0;
}

#hook.viewing .image {
    transform: translateY(0);
    opacity: 1;
}

#hook:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    background: #9FC6E3;
    background: linear-gradient(0deg, rgb(169 199 225) 0%, rgb(169 200 226) 50%, rgba(245, 246, 247, 1) 100%);
    z-index: -1;
}

#hook .fog {
    position: absolute;
    background-image: url(../img/fog.png);
    background-size: auto 100%;
    animation: animatedBackground 300s linear infinite;
    left: 0;
    top: 0;
    width: 100%;
    height: 65%;
    transform: rotate(180deg);
    z-index: 1;
}

#hook:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 106px;
    background-image: url(../img/paper-effect.png);
    background-repeat: repeat-x;
    z-index: 3;
    transition: 1.5s;
    transform: translateY(50px);
    opacity: 0;
}

#hook.viewing:after {
    transform: translateY(0);
    opacity: 1;
}

#hook>.container {
    position: relative;
    z-index: 2;
}

#hook .head h2 {
    color: var(--primaryColor);
    text-transform: uppercase;
    height: 45px;
}

#hook .head h3 {
    color: var(--textColor);
    text-transform: uppercase;
    font-family: "Abril Fatface", serif;
    transition-delay: .3s;
}

#hook .head article {
    color: var(--textColor);
    padding: 0px 15%;
    opacity: .8;
    margin-top: 15px;
    transition-delay: .6s;
}

#hook .head .button {
    margin-top: 35px;
    transition-delay: .9s;
}

/* ===== Module --> Hook End ===== */
/* ===== Module --> Faq ===== */
#faq {
    padding: 65px 0px;
    padding-bottom: 60px;
    overflow: clip;
}

#faq .faqUl {
    margin-top: 25px;
}

#faq .faqUl li {
    margin-bottom: 35px;
}

#faq .faqUl li:last-child {
    margin-bottom: 0px;
}

#faq .faqUl li a {
    display: inline-flex;
    color: var(--textColor);
}

#faq .faqUl li a i {
    font-size: 20px;
    line-height: 20px;
    padding: 20px;
    border-radius: 100%;
    background-color: var(--secondaryColor);
    color: white;
    margin-right: 15px;
}

#faq .faqUl li a>div {
    display: flex;
    align-items: center;
}

#faq .faqUl li a div span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
}

#faq .head,
#faq .head * {
    text-align: left;
}

#faq .head span {
    text-transform: none !important;
    color: var(--primaryColor);
    font-weight: 600;
}

#faq .head h2 {
    margin-bottom: 0px;
}

#faq .head article {
    color: var(--textColor);
    width: 75%;
}

#faq .head a {
    display: flex;
    font-size: 16px;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-top: 10px;
    transition: .3s;
}

#faq .head a i {
    font-size: 13px;
}

#faq .head a:hover i {
    color: white;
}

#faq .head i {
    margin-right: 10px;
    width: initial !important;
    font-size: 22px;
    color: White;
    display: flex;
    align-items: center;
}

#faq .head>.row>div:last-child {
    display: flex;
    align-items: center;
}

.ssslist .item .sssToggle {
    background-color: transparent;
    border-bottom: solid 1px rgba(0, 0, 0, .2);
}

.ssslist .item .sssToggle i {
    font-size: 10px;
    margin-right: 7px;
    margin-left: 5px;
}

.ssslist .item .tuyo {
    border-radius: 7px;
}

.sssToggle.open {
    background-color: var(--primaryColor) !important;
    border-radius: var(--radius);
}

.ssslist .tuyo article {
    color: var(--textColor)
}

.ssslist {
    display: block;
    margin-top: 15px;
}

.ssslist .item {
    display: block;
    position: relative;
    padding: 5px 0px;
}

.ssslist .item .sssToggle {
    display: flex;
    align-items: center;
    padding: 0px 15px;
    line-height: 50px;
    color: var(--textColor);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border-radius: var(--radius);
}

.ssslist .item .sssToggle:hover {
    background-color: whitesmoke;
    cursor: pointer;
}

.sssToggle .iconbox {
    position: absolute;
    right: 5px;
    top: 5px;
    line-height: 50px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    aspect-ratio: 1/1;
    width: 50px;
    justify-content: center;
    display: flex;
    height: 50px;
    padding: 0px;
}

.sssToggle .iconbox i {
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 0;
}

.ssslist .item .tuyo {
    display: block;
    background-color: white;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    overflow: hidden;
    padding: 0px 25px;
}

.ssslist .tuyo article {
    display: block;
    padding: 25px;
    font-size: 16px;
    background-color: whitesmoke;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.ssslist .tuyo article span.badge {
    background-color: #e7e7e8;
    border: 1px solid #babdbf;
    color: var(--textColor);
    margin: 5px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.sssToggle {
    letter-spacing: .5px;
    padding-right: 40px !important;
    background-color: #ffffff12;
}

.tuyo {
    height: 0px
}

#sss .ceviri_ar {
    text-align: right
}

.rt0 {
    transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important;
    -webkit-transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important;
    -moz-transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important;
    -o-transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important;
    -ms-transform: rotate(0deg) scale(1) skew(0deg) translate(0px) !important
}

.sssToggle.open {
    opacity: 1 !important;
    color: white !important;
}

@media screen and (max-width:992px) {
    #faq {
        padding-bottom: 30px;
    }

    .sssToggle .iconbox {
        aspect-ratio: 1 / 1;
        width: 40px;
        height: initial;
    }

    .ssslist .item .sssToggle {
        border-radius: 5px;
        line-height: 23px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .ssslist .item .sssToggle>i {
        display: none;
    }

    #faq .head article {
        width: 100%;
    }
}

/* ===== Module --> Faq End ===== */
/* ===== Module --> Blogs ===== */
#blog {
    padding: 65px 0px;
    position: relative;
    background-color: white;
}

#blog>.container-fluid {
    padding: 0;
    position: relative;
    z-index: 10;
}

#blog:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% + 80px);
    left: 0;
    top: -350px;
    background-image: url(../img/farm.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-bottom: 15px solid rgb(255 255 255 / 30%);
    opacity: 0;
    transform: translateY(50px);
    transition: 2s;
    transition-delay: .5s;
}

#blog.viewing:before {
    opacity: 1;
    transform: translateY(0);
}


#blog .head {
    text-align: left;
    margin-bottom: 15px;

}

#blog .head * {
    text-align: left;
}

#blog .head a {
    text-align: left;
    width: min-content;
    display: flex;
}

#blog .head h2 {
    margin-top: 0px;
    text-align: left
}

#blog .head span {
    text-transform: none !important;
}

#blog .item a {
    padding: 35px;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: rgb(236 236 236 / 90%);
    border-radius: 15px;
    overflow: hidden;
    transition: .5s;
    box-shadow: 0px 0px 30px -10px transparent;
    display: block;
    border-top-left-radius: 15px;
}

#blog .item a .title {
    color: var(--textColor);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    height: 60px;
}

#blog .item a .date {
    color: var(--textColor);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: .5;
    display: block;
    display: flex;
    align-items: center;
}

#blog .item a .date i {
    margin-right: 5px;
}

#blog .item a article {
    color: var(--textColor);
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 72px;
}

#blog .item a .visual {
    margin-bottom: 15px;
    display: flex;
    margin-left: -35px;
    margin-right: -35px;
    margin-top: -35px;
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
    transition: .3s;
}

#blog .item a .visual img {
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 15px;
    transition: .3s;

}

#blog .item:hover a .visual {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%)
}

#blog .owl-carousel .owl-dot span {
    height: 3px;
    width: 7px;
    margin: 2px;
    transition: .3s;
}

#blog .owl-carousel .owl-dot.active span {
    width: 20px;
    background-color: var(--primaryColor);
}

#blog .owl-item,
#blog .item,
#blog .item a {
    height: 100%;
}

#blog .item {
    padding-top: 30px;
    padding-bottom: 30px;
}

#blog .item:hover a img {
    border-bottom-left-radius: 15px;
}

#blog .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px !important;
}

.page #blog {
    position: relative;
    z-index: 15;
}

@media screen and (max-width:992px) {
    .page #blog .item {
        padding: 3px;
    }

    .page #blog .item a {
        padding: 15px;
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    }

    #blog>.container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    #blog .owl-item {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    #blog .head {
        margin-bottom: 35px !important;
    }

    #blog {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    #blog .item {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    #blog .item a .title {
        font-size: 15px;
        line-height: 23px;
        height: 80px;
    }
}

/* ===== Module --> Blogs End ===== */
/* ===== Module --> Tabcase ===== */
#tabcase {
    padding: 65px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#tabcase .head {
    margin-bottom: 15px;
}

#tabcase ul.nav {
    display: flex;
    justify-content: center;
    gap: 25px;
}

#tabcase>div>.row>div:nth-child(2) {
    margin-bottom: 45px !important;
}

#tabcase .nav-link.active {
    background-color: var(--primaryColor);
    color: white;
    border: solid 1px transparent;
    border-radius: var(--radius);
}

#tabcase {}

/* ===== Module --> Tabcase End ===== */
/* ===== Module --> Services ===== */
#services {
    padding: 60px 0px;
}

#services .head,
#services .head * {
    text-align: left;
}

#services .head article {
    width: 75%;
}

#services .head>.row>div:last-child {
    display: flex;
    align-items: center;
}

#services .container-fluid {
    width: 85%;
}

#services .container-fluid img {
    width: 100%;
    border-radius: 85px;
}

#services>.container:last-child {
    position: relative;
    z-index: 5;
    margin-top: -100px;
}

#services>.container:last-child>.row>div:nth-child(1) .box .visual .lottie {
    padding: 25px;
}

#services>.container:last-child>.row>div:nth-child(3) .box .visual .lottie {
    padding: 25px;
    transform: translateY(-23%);
}

#services .box {
    text-align: center;
}

#services .box .visual {
    background-color: white !important;
    height: 210px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    margin: auto;
    position: relative;
}

#services .box .visual:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, .3);
    transform: scale(1.2);
    border-radius: 100%;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    z-index: -1;
}

#services .box .visual .lottie {
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
}

#services .box .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primaryColor);
}

#services .box article {
    font-size: 15px;
    font-weight: 400;
    color: var(--textColor);
    margin-top: 10px;
}

#services>.container:last-child>.row>div:nth-child(1) {}

#services>.container:last-child>.row>div:nth-child(2) {
    transition-delay: .3s;
}

#services>.container:last-child>.row>div:nth-child(3) {
    transition-delay: .6s;
}

#services>.container:last-child>.row>div:nth-child(4) {
    transition-delay: .9s;
}

/* ===== Module --> Services End ===== */



/* ===== Component --> Side Cart ===== */
#sideCart {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 400px;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: #f3f3fbd6;
    z-index: 251;
    transition: .5s;
    transform: translateX(100%);
    -webkit-box-shadow: -7px 0px 15px 5px rgb(0 0 0 / 12%);
    -moz-box-shadow: -7px 0px 15px 5px rgb(0 0 0 / 12%);
    box-shadow: -7px 0px 15px 5px rgb(0 0 0 / 12%);
}

body.cartOn {
    overflow: hidden;
}

body.cartOn #sideCart {
    transform: translateX(0);
}

@media screen and (max-width:992px) {
    #sideCart {
        width: 100% !important;
        height: 100vh;
    }

    .orderStep {
        display: none;
    }
}

#sideCart>.box {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
}

#sideCart>.box>div>.row {
    margin: 0;
}

#sideCart .head {
    font-weight: 600;
    color: var(--textColor);
    font-size: 22px;
    line-height: 20px;
    padding: 10px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 15;
    margin-bottom: 5px;
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: #dedee2;
}

#sideCart .head>i {
    font-size: 14px;
    line-height: 0;
    cursor: pointer;
    width: fit-content;
    color: var(--textColor);
    transform: rotate(-180deg) translateX(10px);
    aspect-ratio: 1 / 1;
    align-items: center;
    border-radius: 100%;
    padding: 10px;
    font-weight: 700;
    opacity: .5;
}

#sideCart .goToggle {
    color: var(--textColor);
    font-size: 16px;
    font-weight: 600;
    padding-left: 10px;
}

#sideCart .goToggle:hover {
    color: var(--primaryColor);
}

#sideCart .head>i:hover {
    opacity: 1;
    background-color: var(--textColor);
    color: whitesmoke;
}

#sideCart .head>span {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--textColor);
    margin-top: 0px;
    font-size: 13px;
    text-transform: none;
}

#sideCart .head>span i {
    line-height: 0;
    width: fit-content;
    font-size: 20px;
}

#sideCart .shopList {
    padding: 0px;
}

#sideCart .shopList>ul {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

#sideCart .shopList>ul>li {
    position: relative;
}

#sideCart .shopList>ul>li:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 0px;
    width: calc(100% - 10px);
    height: 100%;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 5px;
    z-index: -1;
}

#sideCart .shopList>ul>li:hover:before {
    background-color: #ffffff8f;
}

#sideCart .shopList>ul>li:hover .qty {
    background-color: var(--textColor);
}

#sideCart .shopList>ul>li:hover .qty .numButtons,
#sideCart .shopList>ul>li:hover .qty input {
    color: Whitesmoke;
}

#sideCart .shopList>ul>li:hover .deleteToggle {
    opacity: 1;
}

#sideCart .shopList>ul>li:last-child {
    margin-bottom: 45px;
}

#sideCart .shopList li img {
    width: 65%;
    display: table;
    margin: auto;
}

#sideCart .shopList li>.row {
    margin: 0px;
}

#sideCart .shopList li>.row .visual {
    display: flex;
    align-items: center;
}

#sideCart .shopList li>.row .data {
    display: flex;
    align-items: center;
    padding-right: 5px;
    padding-left: 5px;
}

#sideCart .shopList li .name {
    font-weight: 400;
    color: black;
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 10px;
    opacity: .8;
    padding-top: 15px;
}

#sideCart .shopList li span.text {
    font-size: 12px;
    line-height: 12px;
    margin-top: 5px;
    color: var(--textColor);
    display: block;
}

#sideCart .shopList li .piece {
    font-size: 10px;
    font-weight: 500;
    color: var(--textColor);
}

#sideCart .shopList li .piece span {
    font-size: 10px;
    font-weight: 600;
    color: var(--textColor);
    margin-right: 5px;
}

#sideCart .shopList li .oldPrice {
    text-decoration: line-through;
    color: var(--textColor);
    opacity: .6;
    font-size: 13px;
    font-weight: 400;
    display: block;
}

#sideCart .shopList li .price {
    color: var(--primaryColor);
    font-size: 15px;
    line-height: 14px;
    font-weight: 600;
    display: block;
    padding-bottom: 15px;
}

#sideCart .shopList li .priceContent {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-end;

}

#sideCart .qtyCustom {
    padding: 0px;
    max-width: fit-content;
}

#sideCart .deleteToggle {
    color: var(--textColor);
    font-size: 12px;
    transition: .3s;
    cursor: pointer;
    font-weight: 400;
    padding-left: 10px;
    position: absolute;
    right: 25px;
    top: 15px;
}

#sideCart .link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    aspect-ratio: 1/1;
    background-color: var(--secondaryColor);
    color: white;
    font-size: 14px;
    border-radius: var(--radius);
    transition: .3s;
    cursor: pointer;
    opacity: .7;
}

#sideCart .link:hover {
    opacity: 1;
}

#sideCart .deleteToggle:hover {
    color: var(--primaryColor);
}

#sideCart .shopList li>.row ul {
    display: flex;
    justify-content: end;
}

#sideCart .shopList li>.row ul li {
    margin-left: 7px;
}

#sideCart .shopList li>.row ul li:first-child {
    margin-left: 0px;
}

#sideCart hr {
    opacity: .05;
}

#sideCart .customRow {
    margin: 0px;
    padding: 13px 5px;
    zoom: 85%;
    border-top: solid 1px rgba(0, 0, 0, .1);
}

#sideCart .qtyCustom>.row {
    margin: 0px;
}

#sideCart .totalContent {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    padding: 15px;
    background-color: #ededf5;

}

#sideCart .totalContent>.row {
    margin: 0px;
    padding-top: 15px;

    border-radius: 5px;
    overflow: hidden;
}

#sideCart .totalContent>.row>div {
    padding-top: 5px;
    padding-bottom: 5px;
}

#sideCart .totalContent>.row>div:nth-child(2) div>div {
    color: #628f06 !important;
}

#sideCart .totalContent>.row>div>div {
    display: flex;
    justify-content: space-between;
    padding: 0px 15px;
}

#sideCart .totalContent>.row>div>div>div:first-child {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    display: flex;
    align-items: center;
}

#sideCart .totalContent>.row>div>div>div:last-child {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

#sideCart .totalContent>.row>div:nth-child(4) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

#sideCart .totalContent>.row>div:nth-child(4)>div>div:last-child {
    font-size: 20px;
    font-weight: 600;
    color: var(--primaryColor);
    letter-spacing: -1px;
}

#sideCart .totalContent .button {
    width: 100%;
    text-align: center;
    background-color: var(--primaryColor);
    color: white !important;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

#sideCart .totalContent .button:hover {
    background-color: var(--success);
}

#sideCart .totalContent>.row>div:last-child {}

.noItem>.box {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
}

.noItem>.box .iconContent {
    position: relative;
}

.noItem>.box .iconContent .noItemSize {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: white;
    background-color: var(--primaryColor);
    border-radius: 100%;
    font-size: 14px;
    font-weight: 600;
}

#list .noItem>.box .iconContent .noItemSize {
    right: 64px;
    top: 30px;
}

.noItem>.box .iconContent>i {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 100px
}

.noItem>.box .motto {
    text-align: center;
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
    margin-top: 15px;
    color: var(--primaryColor);
    opacity: .7;
}

.noItem>.box article {
    text-align: center;
    font-weight: 300;
    font-size: 18px;
    color: var(--textColor);
    margin-bottom: 25px;
}





.qty {
    background-color: #efeff7;
    border-radius: var(--radius);
    margin: 0 !important;
    flex-wrap: nowrap;
}

.qty .numButtons {
    aspect-ratio: 1/1;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--textColor);
    cursor: pointer;
    font-size: 12px;
}

.qty>div {
    padding: 0px;
}

.qty .numButtons:hover {
    background-color: var(--primaryColor);
    color: white;

}

.qty input {
    line-height: 50px;
    outline: none;
    border: none;
    padding: 0px 10px;
    text-align: center;
    font-weight: 800;
    background-color: transparent;
    width: 100%;
    color: var(--textColor);
    max-width: 60px;
}

.qty input[type="number"]::-webkit-outer-spin-button,
.qty input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty input[type="number"] {
    -moz-appearance: textfield;
}

/* ===== Component --> Side Cart End ===== */

/* ===== Footer ====== */
footer {
    background-color: var(--footerBg);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    padding: 85px 0;
    padding-bottom: 15px;
    position: relative;
    overflow: clip;
}

footer:before {
    content: "";
    position: absolute;
    width: calc(100% - 100px);
    height: 120px;
    background-image: url(../img/chickens.png);
    top: 15px;
    left: 50px;
    z-index: 15;
    filter: grayscale(100%);
    background-size: 85%;
    background-repeat: repeat-x;
    opacity: .2;
    z-index: 0;
}

footer .logoContent {
    margin-bottom: 35px;
    color: var(--secondaryColor);
}

footer .logoContent a {
    display: inline-block;
    color: var(--secondaryColor);
    font-size: 44px
}

footer .contactList {
    margin-top: 35px;
    font-weight: 300
}

footer .contactList>li {
    margin-top: 15px;
    margin-bottom: 15px
}

footer .contactList a {
    color: #fff;
    display: flex;
    opacity: .8
}

footer .contactList a i {
    float: left;
    line-height: 24px;
    margin-right: 10px;
    font-size: 15px
}

footer .contactList .buttons {
    margin-top: 25px
}

footer .contactList .buttons a {
    background-color: var(--primaryColor);
    padding: 0 15px;
    line-height: 40px;
    border-radius: var(--radius);
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    transition: .2s
}

footer .contactList .buttons a:hover {
    background-color: var(--success)
}

footer .contactList .buttons a i {
    float: right;
    line-height: 40px;
    margin-left: 7px
}

footer .contactList a span {
    float: left
}

footer .socials {
    margin-top: 45px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

footer .socials li:first-child {
    min-width: 100%;
}

footer .socials li {
    margin-bottom: 15px
}

footer .socials li.head {
    font-size: 14px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    opacity: .8;
    text-align: left;
}

footer .socials li a {
    color: #fff
}

footer .socials li a * {
    transition: .2s
}

footer .socials li a i {
    font-size: 12px;
    display: inline-block;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    border: solid 1px rgba(255, 225, 255, .2);
    padding: 10px
}

footer .socials li a:hover i {
    border-color: var(--primaryColor) !important;
    color: var(--primaryColor) !important;
}

footer .socials li a span {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .5px;
    margin-left: 7px;
    opacity: .8
}

footer .socials li a:hover * {
    color: var(--secondaryColor)
}

footer .menuList ul {
    line-height: 50px;
    height: 100%
}

footer .menuList .head {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 20px;
    margin-bottom: 25px;
    margin-top: 45px;
    text-align: left;
}

footer .menuList .head:first-child {
    margin-top: 0px;
}

footer .menuList ul {
    padding: 15px;
    border-radius: 10px;
    position: relative;
    overflow: hidden
}

footer .menuList li {
    position: relative;
    z-index: 5
}

footer .menuList li a {
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    opacity: .8;
    white-space: nowrap;
    transition: .2s
}

footer .menuList li a:hover {
    opacity: 1;
    color: var(--primaryColor);
}

footer .menuList li.apk {}

footer .menuList li.apk ul {
    display: flex;
    font-size: 30px;
    line-height: 30px;
    margin-top: 5px;
    padding: 0
}

footer .menuList li.apk ul li {
    margin-right: 30px;
    opacity: .6
}

footer .menuList li.apk ul li:hover {
    opacity: 1
}

footer .menuList li.apk ul li i {
    color: #fff
}

footer .menuList ul:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .02
}

footer .menuList ul.digital:before {
    background-color: var(--digital)
}

footer .menuList ul.turizm:before {
    background-color: var(--turizm)
}

footer .menuList ul.cars:before {
    background-color: #fff
}

footer .menuList ul.insaat:before {
    background-color: var(--insaat)
}

footer .bottom {
    margin-top: 35px;
    margin-bottom: 15px
}

footer .bottom .container {
    background-color: rgba(0, 0, 0, .1);
    border-radius: var(--radius);
    color: #fff;
    padding: 25px 45px;
    border: solid 1px rgba(255, 255, 255, .03)
}

footer .bottom .corporateLinks {
    display: flex;
    font-size: 12px
}

footer .bottom .corporateLinks span {
    opacity: .6;
}

footer .bottom .corporateLinks i {
    margin-left: 10px;
    font-size: 16px;
    display: inline-block;
    float: right;
    bottom: -2px;
    position: relative;
    color: #d260f8;
}

footer .bottom .corporateLinks li {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

footer .bottom .corporateLinks li a {
    color: #fff;
    line-height: 30px;
    transition: .2s
}

footer .bottom .corporateLinks li a:hover {
    opacity: 1;
    color: var(--primaryColor)
}

footer .copy {
    color: #fff;
    line-height: 30px;
    display: inline-block;
    opacity: .5;
    font-size: 12px
}

footer .badge {
    background-color: rgba(255, 255, 255, .1);
}

footer .badge:hover {
    background-color: var(--primaryColor);
    color: white !important;
}

@media screen and (min-width:1200px) {
    .menuList.corporateList {
        padding-left: 40px;
    }
}

@media screen and (max-width:1600px) {
    footer .menuList li.apk ul {
        display: block;
    }

    footer .menuList li.apk ul li {
        margin-bottom: 25px
    }

    footer .menuList li a {
        line-height: 23px;
        white-space: nowrap
    }
}

@media screen and (max-width:821px) {
    footer .contactList .buttons a {
        display: flex !important;
        white-space: nowrap
    }
}

@media screen and (max-width:769px) {
    footer .contactList .buttons a {
        white-space: nowrap;
        display: flex;
        width: fit-content
    }

    footer .mobileLayout {
        max-width: 100%;
        min-width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    footer .menuList li a {
        font-size: 14px
    }

    footer .menuList ul {
        padding-left: 0;
        padding-right: 0
    }
}

@media screen and (max-width:992px) {
    footer .mobilCozumler {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .mobilCozumler .apk {
        margin-bottom: 0px !important;
    }

    footer .menuList li a.badge {
        margin-bottom: 4px;
    }

    footer .menuList li.apk ul {
        font-size: 28px;
    }

    footer .socials li a span {
        display: none;
    }

    footer .socials {
        display: flex;
        gap: 15px;
    }

    footer .socials li:first-child {
        display: none;
    }

    footer .logoContent {
        margin-bottom: 0px;
    }

    footer .bottom .corporateLinks li a {
        white-space: nowrap
    }

    footer .bottom .container {
        padding-left: 15px;
        padding-right: 15px;
        zoom: 75%;
        border-radius: 15px !important
    }

    footer .bottom {
        margin-bottom: -7px
    }

    footer {
        border-radius: 0px !important;
        width: 100% !important;
        margin-left: 0px !important;
        margin-bottom: 0px !important;
    }
}

/* ===== Footer =====  */
/* ===== Page Head ===== */
#pageHead {
    height: 20vh;
    position: relative;
    z-index: 16;
    overflow: hidden;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
}

#pageHead:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20%;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7763480392156863) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
}

#pageHead .videoContent {
    max-height: 100%;
    background-color: black;
}

#pageHead .videoContent video {
    transform: translateY(-18%) scale(1.2);
    opacity: .5;
}

#pageHead .videoContent:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-image: radial-gradient(#242424 40%, transparent 0);
    background-size: 3px 3px;
    opacity: .5;
}

/* ===== Page Head End ===== */
/* ===== Page --> List =====  */
.page #list {
    padding: 60px 0px;
    position: relative;
    z-index: 16;
}

.page #list .head {
    text-align: left;
    justify-content: flex-end;
    border-bottom: dashed 1px rgba(0, 0, 0, 0.1);
    padding-bottom: 25px;
    position: relative;
}

.page #list .head * {
    text-align: left;
}

.page #list .head h2 {
    margin-top: 0px;
}

.page #list .alignment {
    display: flex;
    gap: 15px;
}

.page #list .alignment i {
    display: flex;
    font-size: 20px;
    color: var(--textColor);
    line-height: 0 !important;
    transition: .2s;
}

.page #list .alignment span {
    text-transform: none !important;
    white-space: nowrap;
    font-size: 13px;
    margin-top: 0;
    font-weight: 600;
    transition: .2s;
}

.page #list .alignment a {
    display: flex;
    gap: 7px;
    align-items: center;
    border-radius: 7px;
    border: solid 1px #454e556e;
    padding: 0px 10px;
    line-height: 36px;
    background-color: #454e550f;
    color: var(--textColor);
    transition: .2s;
}

.page #list .alignment a:hover,
.page #list .alignment a.active {
    background-color: var(--primaryColor);
    color: whitesmoke !important;
}

.page #list .alignment a:hover i,
.page #list .alignment a:hover span,
.page #list .alignment a.active i,
.page #list .alignment a.active span {
    color: whitesmoke;
}

.page #list .head>.row>div {
    display: flex;
    align-items: center;
}

.page #list>div>.row>.head {
    position: sticky;
    top: 39px;
    height: 120px;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background-color: #ffffffa3;
    z-index: 110;
    transition: .5s;
}

.page #list>div>.row>.head *:not(.alignment) {
    transition: .3s;
    transform-origin: bottom left;
}

.page #list>div>.row>.head article {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: var(--textColor);
}

#list>div>.row>.head>.row>div:first-child>div>span {
    margin-top: 0px;
}

#list>div>.row>.head>.row>div:first-child>div>span,
#list>div>.row>.head>.row>div:first-child>div>article {
    height: 24px;
}

.stickyOn #list>div>.row>.head>.row>div:first-child>div>span,
.stickyOn #list>div>.row>.head>.row>div:first-child>div>article {
    opacity: 0;
    pointer-events: none;
    height: 0;
}

.stickyOn #list>div>.row>.head {
    height: 70px;
    border: none;
    padding-bottom: 0;
}

#list>div>.row>.head .row,
#list>div>.row>.head .row>div {
    height: 100%;
}

.page #list>div>.row>.head:hover {
    z-index: 100;
}

.page #list {}

/* ===== Page --> List End =====  */

/* ===== Component --> Filter ====== */
#filter {
    max-width: 100%;
}

#filter .filterBox {
    padding: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 25vh;
    overflow-y: auto;
    padding-top: 0px;
}

#filter .filterBox:last-child {
    border-bottom: 0px;
}

#filter .filterBox ul {
    line-height: 30px;
    color: var(--textColor);
    font-size: 15px;
    margin-bottom: 10px;
}

#filter .filterBox ul li:first-child {
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: sticky;
    z-index: 10;
    top: 0;
    background-color: white;
    border-bottom: 0px;
    font-family: var(--font);
}

#filter .filterBox ul li label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#filter .filterBox ul li label input {
    margin-right: 10px;
}

#filter .filterBox ul li label .form-check-input {
    width: 20px;
    height: 20px;
}

#filter .filterBox ul li label .form-check-input:focus {
    box-shadow: none !important;
}

#filter .filterBox ul li label .form-check-input:checked {
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
}

#filter .buttonBox {
    position: sticky;
    bottom: 0;
    background-color: #f8f8f9;
    padding-bottom: 10px;
    z-index: 50;
}

#filter .buttonBox .button {
    width: 100%;
    text-align: center;
    border: none;
}


::selection {
    color: #fff;
    background: var(--primaryColor);
}

header h2 {
    font-size: 24px;
    font-weight: 600;
}

header p {
    margin-top: 5px;
    font-size: 16px;
}

.price-input {
    width: 100%;
    display: flex;
    margin: 15px 0 25px;
}

.price-input .field {
    width: 100%;
    align-items: center;
    position: relative;
}

.price-input .field i {
    position: absolute;
    right: 7px;
    bottom: 11px;
    font-size: 12px;
}

.price-input .field:first-child i {
    right: 11px;
}

.price-input .field>span {
    font-weight: 500;
    font-size: 12px;
    color: var(--textColor);
}

.price-input .field:first-child {
    padding-right: 5px;
}

.price-input .field:last-child {
    padding-left: 5px;
}

.field input {
    width: 100%;
    line-height: 30px;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
    text-align: left;
    text-indent: 10px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 22%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: var(--primaryColor);
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--primaryColor);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* Support */
.support-box {
    top: 2rem;
    position: relative;
    bottom: 0;
    text-align: center;
    display: block;
}

.b-btn {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.b-btn.paypal i {
    color: blue;
}

.b-btn:hover {
    text-decoration: none;
    font-weight: bold;
}

.b-btn i {
    font-size: 20px;
    color: yellow;
    margin-top: 2rem;
}

.liveSearch {
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #ececf5;
    width: 100%;
    padding: 0px 15px;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 36px;
    transition: .3s;
    outline: 1px solid transparent;
}

.liveSearch:focus {
    outline-color: var(--primaryColor) !important;
    box-shadow: none;
}

.filterBox ul li:first-child,
.filterBox ul li:nth-child(2) {
    display: block !important;
}

.filterBox ul li:nth-child(2) {
    position: sticky !important;
    top: -15px;
}

@media screen and (max-width:1440px) {
    #filter .filterBox {
        max-height: 60vh;
    }
}


@media screen and (max-width: 992px) {
    .filterOn #closeToggle {
        width: 35% !important;
        right: 0 !important;
        left: initial !important;
    }
}

/* ===== Component --> Filter End ====== */
/* ===== Page --> Detail ===== */
#detail {
    padding: 50px 0px;
    padding-bottom: 15px;
}

#detail .top {
    padding: 15px 0px;
    padding-top: 0px;
}

#detail .top .box {
    /*padding-left:35px;*/
    width: 100%;
}

#detail .top .box .alert {
    font-size: 14px;
    font-weight: 300;
    padding: 0px;
    margin-top: 15px;
    position: relative;
    transition: .2s;
    transform: translateY(0px);
}

#detail .top .box .alert.danger {
    transform: translateY(-6px);
}

#detail .top .box .alert span {
    text-decoration: underline;
    font-weight: 400;
}

#detail .top .box .alert:before {
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 7px;
    background-color: #83bb1138;
    box-shadow: 0px 0px 0px 1px #dfebcb;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: -1;
    opacity: 0;
    transition: .2s;
    transform: translateY(10px);
}

#detail .top .box .alert.danger:before {
    opacity: 1;
    transform: translateY(0px);
}

#detail .mobileSticky li:nth-child(2) {
    position: relative;
}

#detail .mobileSticky li:nth-child(2):before {
    font-family: 'default';
    content: "\e995";
    position: absolute;
    left: calc(50% - 12px);
    bottom: -27px;
    font-size: 24px;
    line-height: 24px;
    color: #d2d9c9;
    opacity: 0;
    transition: .2s;
    transform: translateY(0px);
}

#detail .mobileSticky li:nth-child(2):hover:before {
    opacity: 1;
    transform: translateY(-6px);
}


#detail .visualContent {}

#detail .visualContent .visual img {
    width: 100%;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

#detail .visualContent .thumbs {}

#detail .visualContent .thumbs li {
    margin-bottom: 10px;
}

#detail .visualContent .thumbs li a {
    display: inline-block;
    aspect-ratio: 1/1;
    width: 70px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 5px;
    background-color: white;
    opacity: .8;
    transition: .3s;
    overflow: hidden;

    padding: 5px;
}

#detail .visualContent .thumbs li a.active {
    opacity: 1;
    border-color: var(--primaryColor);
}

#detail .visualContent .thumbs li a:hover {
    opacity: 1;
}

#detail .visualContent .thumbs li a img {
    width: auto;
    height: 100%;
    border-radius: 5px;
}

#detail .data {
    padding: 0;
}

#detail .data .box .name {
    font-size: 36px;
    line-height: 46px;
    color: #212121;
    font-weight: 700;
}

#detail .data .box .productCode {
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primaryColor);
    cursor: pointer;
}

#detail .data .box .productCode span {
    font-weight: 400;
    font-size: 14px;
    color: var(--textColor);
}

#detail .data .box .price {
    color: :var(--secondaryColor);
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

#detail .data .box .price .oldPrice {
    color: :var(--secondaryColor);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-decoration: line-through;
    opacity: .5;
    display: block;
    margin-bottom: 7px;
}

#detail .data .box article {
    color: :var(--textColor);
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    opacity: .8;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#detail .data .box ul {
    display: flex;
}

#detail .data .box ul.mobileSticky {
    gap: 25px;
}

#detail .data .box ul li:last-child {
    margin-right: 0px;
}

#detail .data .box .qty input {
    line-height: 51px;
}

#detail .data .box .qty .numButtons {
    line-height: 41px;
    height: 41px;
    margin: 5px;

}

#detail .data .box ul li .button {
    background-color: var(--primaryColor);
    color: Whitesmoke;
    padding: 0px 45px;
    line-height: 51px;
}

#detail .data .box ul li .button:hover {
    background-color: var(--secondaryColor);
}

#detail .data .box ul li .likeToggle {
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#detail .data .box ul li .likeToggle i {
    font-size: 27px;
    line-height: 27px;
    color: var(--textColor);
    border-radius: 100%;
}

#detail .data .box ul li .likeToggle .icon-like {
    color: red;
    animation: pulseHeart 2s 1;
}

#detail .data .box .brand {
    color: var(--textColor);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 10px;
    width: 100%;
}

#detail .data .box .brand i {
    font-size: 7px;
    margin-left: 5px;
    margin-right: 5px;
}

#detail .data .box .brand span a {
    color: var(--primaryColor);
    position: relative;
}

#detail .data .box .settings {
    margin-bottom: 35px;
}

#detail .data .box .whatsappSiparis {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#detail .data .box .whatsappSiparis a {
    width: 100%;
    background-color: #25d366;
    line-height: 50px;
}

#detail .data .box .whatsappSiparis a:hover {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
}

#detail .data .box .settings span {
    font-size: 14px;
    color: var(--textColor);
    letter-spacing: .5px;
    display: block;
    margin-bottom: 10px;
}

#detail .data .box .settings select {
    width: 100%;
    line-height: 40px;
    height: 40px;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    outline: none;
    text-indent: 20px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        calc(100% - 2.5em) 0.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
}

#detail .data .box .settings select:focus {
    border: solid 1px var(--primaryColor);
}

#detail .data .box .settings .form-switch {
    padding: 0px;
    display: flex;
    width: 165px;
    margin-top: 11px;
}

#detail .data .box .settings .form-switch input {
    margin: 0px;
    float: none;
    height: 36px;
    width: 65px;
}

#detail .form-check-input:checked {
    background-color: var(--success);
    border-color: var(--success);
}

#detail .data .box .settings .form-switch .result {
    padding-left: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

#detail .data .box .settings textarea {
    width: 100%;
    height: 120px;
    border-radius: var(--radius);
    resize: none;
    border: solid 1px rgba(0, 0, 0, 0.3);
    padding: 20px;
    outline: none;
}

#detail .data .box .settings textarea:focus {
    border: solid 1px var(--primaryColor);
}

#detail .data .box .settings #fileInput {
    margin-top: 25px;
}

#detail .bottom {
    padding: 75px 0px;
    padding-top: 15px;
}

#detail .bottom .bottomImage img {
    width: 100%;
    display: table;
    margin: auto;
}

#detail .bottom .data .title {
    color: var(--textColor);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
}

#detail .bottom .data article {
    color: var(--textColor);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}

#detail .bottom .data ul li {
    padding-top: 0px;
}

#detail .bottom .data ul li .title {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
}

#detail .bottom .data ul li i {
    font-size: 20px;
    line-height: 20px;
    display: block;
    aspect-ratio: 1/1;
    border-radius: 100%;
    color: white;
    padding: 13px;
    background-color: var(--primaryColor);
}

#detail .bottom .data .videoContent video {
    overflow: hidden;
    border-radius: 15px;
}

#detail .bottom .data ul li article {
    padding: 15px 0px;
    padding-top: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    padding-bottom: 0px !important;
}

#detail .bottom .data ul li article table {
    background-color: whitesmoke;
    border-radius: 15px;
    padding: 15px !important;
    margin-bottom: 25px;
}

#detail .bottom .data ul li article table tr td {
    padding: 10px 35px !important;
}

#detail .bottom .data ul li article table tr:first-child td {
    padding-top: 25px !important;
}

#detail .bottom .data ul li article table tr:last-child td {
    padding-bottom: 25px !important;
}

#detail .bottom .data ul li:last-child article {
    width: 100%;
    border-bottom: 0px;
}

#detail .bottom .box {}

#detail .bottom .box ul {
    padding: 45px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
}

#detail .bottom .box ul li {
    width: 100%;
    display: flex;
}

#detail .bottom .box ul li span {
    white-space: nowrap;
    line-height: 50px;
    color: var(--textColor);
    font-weight: 500;
}

#detail .bottom .box ul li span:first-child {
    width: initial;
    display: inline-block;
    padding-right: 10%;
}

#detail .bottom .box ul li span:nth-child(2) {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#detail .bottom .box ul li span:last-child {
    width: initial;
    display: inline-block;
    padding-left: 10%;
}

#detail .bottom .box .title {
    padding: 45px;
    padding-bottom: 25px;
    font-weight: 700;
    color: var(--secondaryColor);
}

#detail .bottom .tag {
    background-color: #f3f3fb;
    display: inline-block;
    font-size: 14px;
    padding: 0px 10px;
    border-radius: var(--radius);
    margin-left: 5px;
    margin-bottom: 5px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}

#detail .bottom table td {
    padding-top: 5px;
    padding-bottom: 5px;
}

#detail .settings .numara li {
    margin-right: 10px !important;
}

#detail .settings .numara li a {
    height: 60px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .6);
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, 0.05);
    transition: .3s;
    padding-bottom: 7px;
    position: relative;
}

#detail .settings .numara li a:before {
    content: "ADET";
    position: absolute;
    font-size: 8px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    bottom: 13px;
}

#detail .settings .numara li a.active {
    opacity: 1;
    border-color: var(--primaryColor);
}

#detail .data .damping {
    position: relative;
    text-align: center;
    width: fit-content;
}

#detail .data .damping>span {
    background-color: var(--success);
    border-radius: 5px;
    color: white;
    padding: 0px 10px;
    line-height: 44px;
    font-size: 15px;
    display: inline-block;
}

#detail .data .damping span i {
    transform: rotate(90deg) scale(1) skew(0deg) translate(0) !important;
    -webkit-transform: rotate(90deg) scale(1) skew(0deg) translate(0) !important;
    -moz-transform: rotate(90deg) scale(1) skew(0deg) translate(0) !important;
    -o-transform: rotate(90deg) scale(1) skew(0deg) translate(0) !important;
    -ms-transform: rotate(90deg) scale(1) skew(0deg) translate(0) !important;
    display: inline-block;
    font-size: 11px;
}

#detail .data .damping span span {
    display: inline-block;
    animation-name: bounce;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

#detail .badge {
    background-color: crimson;
    border-radius: 5px;
    padding: 0px 10px;
    line-height: 26px;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
    animation: pulseHeart 2s infinite;
}

#detail .badge i {
    margin-right: 5px;
}

#showCase {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(221, 211, 194, 1) 100%) !important;
}

#detail .gallery {
    display: none;
}

#detail .visualContent .info {
    font-style: italic;
    color: var(--textColor);
    opacity: .6;
    font-size: 14px;
    text-align: center;
}


#detail .badges {
    margin-top: 25px;
}

#detail .badges li {
    margin-right: 15px !important;
    padding: 0px !important;
    width: initial !important;
}

#detail .badges li .badge {
    animation: none;
    background-color: transparent;
    font-weight: 400;
    line-height: 34px;
    color: var(--textColor);
    font-size: 13px;
    margin: 0px !important;
    box-shadow: 0px 0px 0px 1px var(--textColor);
    opacity: .7;
}

#detail .badges li .badge i {
    font-size: 16px;
    float: left;
    line-height: 34px;
}

#detail .otherSizePrice {
    padding-top: 35px;
    padding-bottom: 35px;
}

#detail .otherSizePrice table {
    font-family: var(--titleFont);
    background-color: #f3f4f8;
    border-radius: var(--radius);
}

#detail .otherSizePrice table tr:last-child {
    border: none;
}

#detail .otherSizePrice table tr:hover {
    background-color: #ececf5;
}

#detail .otherSizePrice td {
    padding: 10px 15px;
    font-size: 14px;
    color: var(--textColor);
    border-right: solid 1px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

#detail .otherSizePrice td span {
    display: block;
    font-size: 11px;
    line-height: 12px;
    opacity: .8;
    letter-spacing: .5px;
    font-weight: 400;
}

#detail .otherSizePrice td:nth-last-child(2) {
    font-weight: 700;
    font-family: var(--font);
}

#detail .otherSizePrice td:nth-last-child(2) span {
    font-family: var(--titleFont);
}

#detail .otherSizePrice td:nth-last-child(1) {
    border-right: 0px;
}

#detail .otherSizePrice tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#detail .otherSizePrice td a {
    background-color: transparent;
    font-family: var(--font);
    font-size: 12px;
    color: var(--textColor);
    font-weight: 400;
    padding: 0px 10px;
    border-radius: var(--radius);
    line-height: 30px;
    letter-spacing: .5px;
    width: min-content;
    white-space: nowrap;
    display: inline-block;
}

#detail .otherSizePrice td a i {
    margin-left: 10px;
}

#detail .otherSizePrice td a:hover {
    background-color: var(--primaryColor);
    color: whitesmoke;
}

#detail .bottom>div>.row>div:first-child {
    padding-right: 45px;
}

#detail .bottom>div>.row>div:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 45px;
}

#detail .bottom>div>.row>div:last-child ul .head {
    text-align: left;
    font-weight: 800;
    font-size: 20px;
    margin-top: 0px;
    color: var(--primaryColor);
}

#detail .danger {
    text-align: left;
    font-size: 16px;
    color: var(--textColor);
    position: relative;
    margin-bottom: 15px;
}

#detail .danger>span {
    position: relative;
    z-index: 2;
}

#detail .danger>span a {
    color: var(--primaryColor);
    font-weight: 600;
}

@media screen and (max-width:1440px) {
    #detail .visualContent .info {
        position: relative;
        top: -10px;
    }

    #detail .top {
        padding: 0px 0px !important;
    }

    #detail {
        padding: 10px 0px;
        padding-bottom: 15px;
    }

    #detail .visualContent .visual img {
        width: 50%;
    }
}


@media screen and (min-width:992px) {
    .mobileSticky {
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}


@media screen and (max-width:992px) {
    #detail .otherSizePrice td {
        font-size: 13px;
    }

    #detail .otherSizePrice td:nth-last-child(1) {
        padding-left: 3px;
        padding-right: 3px;
    }

    #detail .otherSizePrice td:nth-last-child(2) {
        white-space: nowrap;
    }

    #detail .visualContent {
        position: relative;
    }

    #detail .visualContent a.visual {
        padding-left: 0px;
        padding-right: 0px;
        min-width: fit-content;
        margin-left: -6px;
        margin-right: -6px;
    }

    #detail .visualContent .visual img {
        width: 88%;
    }

    #detail .bottom>.container>.row {
        margin: 0;
    }

    #detail .data .box article {
        margin-bottom: 0px;
    }

    #detail .top {
        padding-bottom: 0px;
    }

    #detail .badges li {
        margin-right: initial !important;
        margin-left: 10px;
    }

    #detail .visualContent .info {
        margin-bottom: 15px;
        position: absolute;
        left: 10px;
        bottom: 91px;
        width: 100%;
        text-align: center;
        font-size: 12px;
        top: initial;
        margin-bottom: 0px;
    }


    #showCase .owl-theme .owl-nav.disabled+.owl-dots {
        margin-bottom: 0px !important;
    }

    #showCase .head {
        padding: 0px 25px;
    }

    #detail .bottom .data ul li {
        padding: 20px 0px;
        border-bottom: 1px solid rgba(0, 0, 0, .1)
    }

    #detail .bottom .data ul li article {
        border-bottom: 0px;
    }

    #detail .data .box ul li:last-child {
        width: fit-content;
    }

    #detail .data .box ul li .likeToggle {
        aspect-ratio: initial;
    }

    #detail .data .box .qty .numButtons {
        height: 41px;
    }

    #detail .data .box .qty input,
    #detail .data .box .qty .numButtons {
        line-height: 51px;
    }

    #detail .badge {
        margin-left: 0px;
        top: 20px !important;
        margin-bottom: 0px;
    }

    #detail .data .box .brand,
    #detail .data .box .name,
    #detail .data .box .productCode,
    #detail .data .box .price,
    #detail .data .box article,
    #detail .data .box .settings {
        padding: 0px 15px;
    }

    #detail .data .box .settings {
        margin-bottom: 15px;
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        padding-top: 10px;
        justify-content: space-between;
    }

    #detail .data .box .settings>.row {
        width: 100%;
    }

    #detail {
        padding: 0px 0px;
        padding-bottom: 0px;
    }

    #detail .data .box .name,
    #detail .data .box .productCode {
        width: 55%;
        float: left;
        margin-bottom: 5px;
    }

    #detail .data .box .name {
        font-size: 22px;
        line-height: 26px;
    }

    #detail .data .box .price {
        width: 45%;
        padding-left: 0px;
        padding-right: 0px;
        font-size: 24px;
        margin-top: -22px;
    }

    #detail .data .box article {
        clear: both;
        order: 2;
        padding-bottom: 25px;
    }

    #detail .bottom .bottomImage img {
        margin-bottom: 35px;
    }

    #detail .data .mobileSticky {
        background-color: rgba(255, 255, 255, .4);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        position: sticky;
        bottom: 0px;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 15px;
        padding-top: 10px;
        z-index: 35;
        width: 100%;
        margin-left: -7px;
        margin-right: -7px;
        width: -webkit-fill-available;
    }

    #detail .top {
        padding-top: 0px;
    }

    #detail .visualContent .thumbs li {
        margin-bottom: 0px;
        margin-right: 10px;
    }

    #detail .visualContent .thumbs {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    #detail .visualContent .thumbsContent {}

    #detail .bottom .box ul li span:last-child {
        padding-left: 7%;
    }

    #detail .bottom .box ul li span:first-child {
        padding-right: 7%;
    }

    #detail .bottom .box ul li span:nth-child(2) {
        height: 30px;
    }

    #detail .bottom .box ul {
        padding: 25px;
        font-size: 13px;
        background-color: #fafafa;
    }

    #detail .bottom .box .title {
        padding-top: 25px;
    }

    #detail .bottom .data ul li .title {
        margin-bottom: 5px;
        font-size: 16px;
    }

    #detail .bottom .data ul li i {
        padding: 10px;
    }

    #detail .bottom .data ul li article {
        width: 100%;
        margin-bottom: 0px;
    }

    #detail .bottom .data ul li article p {
        margin-bottom: 0px;
    }

    #detail .bottom .data article {
        font-size: 14px;
        margin-bottom: 0px;
    }

    #detail .bottom .data .title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 25px;
    }

    #detail .bottom {
        padding: 25px 0px;
        padding-top: 0px !important;
    }

    #searchBar .inputBox input {
        background-color: white !important;
    }

    #searchBar {
        background-color: whitesmoke !important;
    }

    #detail .visualContent .thumbs li a {
        width: 40px;
    }

    #detail .data .box {
        zoom: 85%;
        padding-left: 0px;
        display: flex;
        flex-wrap: wrap;
    }

    #detail .data .box .numara li:last-child {
        padding: 0px !important;
    }

    #detail .data .box ul li:last-child {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 5px;
    }

    #detail .data .box ul li:nth-child(2) {
        margin-right: 0px;
    }

    #detail .data .box ul li:nth-child(1) {
        margin-right: 2%;
    }

    #detail .data .box ul li .button {
        white-space: nowrap;
        padding: 0px 35px;
        line-height: 52px;
        width: 100%;
        text-align: center;
    }

    #detail .data .settings>.row>div:nth-child(3) {
        margin-top: 25px;
    }

    #detail .data .settings>.row>div:nth-child(3) span {
        height: auto;
    }
}


/* ===== Page --> Detail End ===== */
/* ===== Component --> Similar ===== */
#similar {
    padding-bottom: 45px;
}

#similar .head,
#similar .head * {
    text-align: left;
}

#similar .owl-item .item {
    padding-top: 25px;
    padding-bottom: 25px;
}

/* ===== Component --> Similar End ===== */
/* ===== Page --> Login ===== */
#login {
    display: flex;
    height: 100vh;
}

#login:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20%;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7763480392156863) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
}

#login .videoContent {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
    background-color: black;
}

#login .videoContent video {
    transform: scale(1.7);
    opacity: .7;
}

#login .videoContent:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-image: radial-gradient(#242424 40%, transparent 0);
    background-size: 3px 3px;
    opacity: .5;
}

#login>.row {
    min-height: 100%;
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 5;
    /*
    background-image: url(../img/farm2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    */

    align-items: center;
}

#login>.row>div:nth-child(2) {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#login .box {
    width: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgb(0 0 0 / 0%);
    border-radius: var(--radius);
    padding: 75px 65px !important;
    border: solid 1px rgba(255, 255, 255, .2);

}

#login .box .head {
    font-weight: 500;
    font-family: var(--titleFont);
    font-size: 30px;
    color: white;
    margin-bottom: 25px;
}

#login .box .head h2 {
    color: white;
}

#login form ul li {
    margin-bottom: 15px;
}

#login form ul li input[type="text"],
#login form ul li input[type="password"] {
    min-width: 100%;
    padding: 0px 25px;
    line-height: 60px;
    border-radius: var(--radius);
    box-shadow: 0px 0px 0px 1px rgb(221 221 229) !important;
    background-color: #ececf5 !important;
    width: 100%;
    border: none;
    outline: none;
    transition: .2s;
    text-align: left;
    font-size: 14px;
}

#login form ul li input[type="text"]:focus,
#login form ul li input[type="password"]:focus {
    background-color: white !important;
}

#login form ul li button {
    min-width: 100%;
}

#login form ul li input[type="text"]:focus,
#login form ul li input[type="password"]:focus {
    box-shadow: 0px 0px 0px 1px var(--primaryColor) !important;
}

#login .forget {
    font-weight: 500;
    font-size: 17px;
    color: var(--asistHover);
}

#login button {
    font-weight: 500;
    color: white;
    padding: 0px 25px !important;
    line-height: 49px;
    background-color: var(--primaryColor);
    border-radius: var(--radius);
    border: none;
    box-shadow: none;
    outline: none;
    height: auto;
    display: inline-block;
    width: 50%;
    text-align: center;
    transition: .2s;
}

#login button:hover {
    background-color: var(--success);
}

#login .register {
    font-weight: 500;
    font-size: 17px;
    color: white;
    text-decoration: underline !important;
    text-align: center;
    display: table;
    margin: auto;
    margin-top: 10px;
}

#login .register:hover {
    color: #acff00;
}

#login .socialLogin {
    margin-top: 25px;
}

#login .socialLogin ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#login .socialLogin ul li {}

#login .socialLogin ul li a {
    white-space: nowrap;
    display: flex;
    zoom: 80%;
}

#login .socialLogin ul li a.facebook {
    background-color: var(--facebookColor);
    padding: 0px 15px;
    padding-left: 25px;
    color: white;
    line-height: 50px;
    border-radius: var(--radius);
    white-space: nowrap
}

#login .socialLogin ul li a.facebook:after {
    font-family: 'default' !important;
    content: "\e910";
    float: right;
    line-height: 50px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    margin-left: 15px;

}

#login .socialLogin ul li a.google {
    background-color: var(--googleColor);
    padding: 0px 15px;
    padding-left: 25px;
    color: white;
    line-height: 50px;
    border-radius: var(--radius);
    white-space: nowrap
}

#login .socialLogin ul li a.google:after {
    font-family: 'default' !important;
    content: "\e912";
    float: right;
    line-height: 50px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    margin-left: 15px;
}

#login .socialLogin article {
    font-size: 15px;
    margin-top: 10px;
    font-weight: 300;
    line-height: 22px;
    color: white;
    width: 100%;
    text-align: center;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-background-clip: text;
}

@media screen and (max-width: 992px) {
    #login {
        min-height: calc(100vh + 120px);
        display: flex;
        margin-bottom: -120px;
    }

    #login .socialLogin ul {
        display: block;
    }

    #login .socialLogin ul li a {
        width: 100%;
    }

    #login .box {
        background-color: transparent;
        border: none !important;
        zoom: 80%;
    }
}

#login .fakeTab {
    background-color: #635f58;
    position: relative;
}

#login .fakeTab:before {
    content: "";
    width: calc(100% + 4px);
    height: 100%;
    position: absolute;
    left: -2px;
    top: 0;
    z-index: -1;
    background-color: #635f58;
}

#login .fakeTab ul {
    display: flex;
    margin-top: 25px;
}

#login .fakeTab li {
    width: 100%;
    text-align: center;
}

#login .fakeTab li:first-child {
    margin-right: 5px;
}

#login .fakeTab li:last-child {
    margin-left: 5px;
}

#login .fakeTab li a {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgba(255, 255, 255, .2);
    width: 100%;
    line-height: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

#login .fakeTab li a.active {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    line-height: 50px;
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 16px;
}

/* Login End */
#login .forget {
    width: 100%;
}

@media screen and (max-width:1440px) {
    #login>.row>div:nth-child(2) {
        padding-bottom: 140px;
    }

    #login {
        height: 100vh;
    }

    #login form ul li input[type="text"],
    #login form ul li input[type="password"] {
        font-size: 16px;
    }

    #login .box {
        width: 85%;
        transform: scale(.95);
    }
}

@media screen and (max-width:992px) {
    #login .fakeTab {
        height: 75px;
    }

    #login .box {
        width: 100%;
        transform: scale(1);
    }

}

/* ===== Page --> Login End ===== */
/* ===== Page --> Register ===== */
#register {
    height: 100vh;
    display: flex;
}

#register:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20%;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7763480392156863) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
}

#register .videoContent {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
    background-color: black;
}

#register .videoContent video {
    transform: scale(1.7);
    opacity: .7;
}

#register .videoContent:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-image: radial-gradient(#242424 40%, transparent 0);
    background-size: 3px 3px;
    opacity: .5;
}

#register>.row {
    min-height: 100%;
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 5;
    /*
    background-image: url(../img/farm2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    */

    align-items: center;
}

#register>.row>div:nth-child(2) {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#register .box {
    width: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 75px 65px !important;
    border: solid 1px rgba(255, 255, 255, .2);

}

#register .box .head {
    font-weight: 500;
    font-size: 30px;
    color: white;
    margin-bottom: 25px;
}

#register .box .head h2 {
    color: white;
}

#register form ul li {
    margin-bottom: 23px;
}
#register form ul li select,
#register form ul li input[type="text"],
#register form ul li input[type="password"] {
    min-width: 100%;
    padding: 0px 25px;
    line-height: 60px;
    border-radius: var(--radius);
    box-shadow: 0px 0px 0px 1px rgb(221 221 229) !important;
    background-color: #ececf5 !important;
    width: 100%;
    border: none;
    outline: none;
    transition: .2s;
    text-align: left;
    font-size: 14px;
}

#register form ul li:nth-child(1) input {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#register form ul li:nth-child(2) input {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#register form ul li input[type="text"]:focus,
#register form ul li input[type="password"]:focus {
    background-color: white !important;
}

#register form ul li button {
    min-width: 100%;
}

#register form ul li input[type="text"]:focus,
#register form ul li input[type="password"]:focus {
    box-shadow: 0px 0px 0px 1px var(--primaryColor) !important;
}

#register .forget {
    font-weight: 500;
    font-size: 17px;
    color: var(--asistHover);
}

#register button {
    font-weight: 500;
    color: white;
    padding: 0px 25px !important;
    line-height: 49px;
    background-color: var(--primaryColor);
    border-radius: var(--radius);
    border: none;
    box-shadow: none;
    outline: none;
    height: auto;
    display: inline-block;
    width: 50%;
    text-align: center;
    transition: .2s;
    margin-bottom: 15px;
}

#register button:hover {
    background-color: var(--success);
}

#register .register {
    font-weight: 500;
    font-size: 17px;
    color: white;
    text-decoration: underline !important;
    display: table;
    margin: auto;
}

#register .register:hover {
    color: #acff00;
}

#register .socialLogin {
    margin-top: 5px;
}

#register .socialLogin ul {
    display: flex;
    gap: 15px;
    justify-content: center;
}

#register .socialLogin ul li {}

#register .socialLogin ul li a {
    width: 100%;
    display: flex;
    zoom: 80%;
}

#register .socialLogin ul li a.facebook {
    background-color: var(--facebookColor);
    padding: 0px 15px;
    padding-left: 25px;
    color: white;
    line-height: 50px;
    border-radius: var(--radius);
    white-space: nowrap
}

#register .socialLogin ul li a.facebook:after {
    font-family: 'default' !important;
    content: "\e910";
    float: right;
    line-height: 50px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    margin-left: 15px;

}

#register .socialLogin ul li a.google {
    background-color: var(--googleColor);
    padding: 0px 15px;
    padding-left: 25px;
    color: white;
    line-height: 50px;
    border-radius: var(--radius);
    white-space: nowrap
}

#register .socialLogin ul li a.google:after {
    font-family: 'default' !important;
    content: "\e912";
    float: right;
    line-height: 50px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    margin-left: 15px;
}

#register .socialLogin article {
    font-size: 15px;
    margin-top: 10px;
    font-weight: 300;
    line-height: 22px;
    color: white;
    width: 100%;
    text-align: center;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-background-clip: text;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.3) !important;
}

@media screen and (max-width: 992px) {
    #register .socialLogin ul {
        display: block;
    }

    #register .socialLogin ul li a {
        width: 100%;
    }

    #register .box {
        background-color: transparent;
        border: none !important;
        zoom: 80%;
    }

    #register .fakeTab {
        background-color: #635f58;
        position: relative;
    }

    #register .fakeTab:before {
        content: "";
        width: calc(100% + 4px);
        height: 100%;
        position: absolute;
        left: -2px;
        top: 0;
        z-index: -1;
        background-color: #635f58;
    }

    #register .fakeTab ul {
        display: flex;
        margin-top: 25px;
    }

    #register .fakeTab li {
        width: 100%;
        text-align: center;
    }

    #register .fakeTab li:first-child {
        margin-right: 5px;
    }

    #register .fakeTab li:last-child {
        margin-left: 5px;
    }

    #register .fakeTab li a {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background-color: rgba(255, 255, 255, .2);
        width: 100%;
        line-height: 50px;
        color: white;
        font-weight: 600;
        font-size: 16px;
    }

    #register .fakeTab li a.active {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background-color: rgba(255, 255, 255, 1);
        width: 100%;
        line-height: 50px;
        color: var(--primaryColor);
        font-weight: 600;
        font-size: 16px;
        pointer-events: none;
    }
}



@media screen and (max-width:1440px) {
    #register>.row>div:nth-child(2) {
        padding-bottom: 80px;
    }

    #register {
        height: 100vh;
    }

    #register form ul li input[type="text"],
    #register form ul li input[type="password"] {
        font-size: 16px;
    }

    #register .box {
        width: 85%;
        transform: scale(.95);
    }
}

@media screen and (max-width:992px) {
    #register .box {
        width: 100%;
        transform: scale(1);
    }
}

/* ===== Page --> Register End ===== */
/* ===== Page --> Order ===== */
#order {
    padding-bottom: 35px;
    padding-top: 70px;
    border-top: 0px !important;
}

#order .head {
    margin-bottom: 35px;
    text-align: left;
}

#order .head span {
    font-size: 16px;
    line-height: 22px;
    color: var(--textColor);
    font-weight: 400;
    letter-spacing: .5px;
    margin-bottom: 0px;
    margin-top: 5px;
    text-align: left;
    text-transform: none;
}

#order .head h2 {
    margin-bottom: 0px;
    text-align: left;
}

#order .head span b {
    font-size: 16px;
    line-height: 14px;
    color: var(--primaryColor);
    font-weight: 600;
}

#order .orderItems {
    margin-bottom: 15px;
    background-color: rgb(240 240 249);
    border-radius: 10px;
    transition: .2s;
}

#order .orderItems .flexBox {
    display: flex;
    flex-wrap: nowrap;
}

#order .orderItems:hover {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.3);
}

#order .orderItems .product {}

#order .orderItems>.row {
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

#order .orderItems>.row>div:first-child {
    width: 10%;
    display: flex;
    align-items: center;
    padding: 0;
}

#order .orderItems>.row>div:last-child {
    width: 90%;
}

#order .orderItems>.row .row div:first-child div div.productName {
    font-weight: 600;
    color: var(--footerBg);
    margin-bottom: 10px;
}

#order .orderItems>.row .row div:first-child div ul {
    display: flex;
    flex-flow: column;
    gap: 2px;
    font-size: 13px;
}

#order .orderItems>.row .row div:first-child div ul li {
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: .5s;
}

#order .orderItems>.row .row div:first-child div ul li span {
    font-weight: 500;
    color: var(--textColor);
}

#order .orderItems .name {
    font-size: 12px;
    color: var(--textColor);
    opacity: .7;
    letter-spacing: .5px;
    font-weight: 500;
}

#order .orderItems .qtyUnit {}

#order .orderItems .qtyUnit>div {
    /*height: 88px;*/
}

#order .orderItems .qtyUnit .oldPrice {
    color: var(--textColor);
    text-decoration: line-through;
    font-size: 14px;
    letter-spacing: .5px;
    white-space: nowrap;

}

#order .orderItems .qtyUnit .price {
    color: var(--primaryColor);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    white-space: nowrap;
}

#order .orderItems .tax {
    margin-top: 10px;
}

#order .orderItems .qtyContent {}

#order .orderItems .qtyContent .qty {
    transform: scale(.8);
    background-color: white;
}

#order .orderItems .tax .price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primaryColor);
    opacity: .8;
}

#order .orderItems .total {
    min-width: 12%;
    max-width: 12%;
}

#order .orderItems .total .price {
    color: var(--primaryColor);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    white-space: nowrap;
}

#order .orderItems .actions {
    display: flex;
    margin-left: 35px;
}

#order .orderItems .actions li {
    margin-left: 20px;
}

#order .orderItems .actions li:first-child {
    margin-left: 0px;
}

#order .orderItems .actions li a {
    color: var(--textColor);
    opacity: .7;
    dipslay: block;
}

#order .orderItems .actions li a:hover {
    opacity: 1;
}

#order .orderItems .total {
    padding-left: 35px;
}

#order .basketFixed {
    width: 22%;
    padding-left: 17px;
}

#order .stickyBox {
    position: sticky;
    top: 96px;
}

#order .basketFixed .box {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 35px 0px rgb(0 0 0 / 6%);
    background-color: white;

}

#order .basketFixed .box .inputBox {
    position: relative;
    margin-bottom: 25px;
}

#order .basketFixed .box .inputBox input {
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0px 15px;
    padding-right: 45px;
    line-height: 36px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
}

#order .basketFixed .box .inputBox button {
    border: none;
    outline: none;
    padding: 0px 13px;
    position: absolute;
    right: 15px;
    top: 10px;
    transform: scale(.7);
    border-radius: var(--radius);
    display: block;
    background-color: transparent;
}

#order .basketFixed .box .inputBox:hover button {
    background-color: white;
}

#order .basketFixed .box .inputBox button:hover {
    background-color: var(--primaryColor);
    color: White;
}

#order .basketFixed .box .inputBox button i {
    margin: 0px;
}

#order .basketFixed ul {
    text-align: right;
    font-size: 14px;
}

#order .basketFixed li {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 5px;
    padding-bottom: 5px;
}

#order .basketFixed li:last-child {
    border-bottom: none;
}

#order .basketFixed li .title {
    font-weight: 400;
    color: var(--textColor);
    font-size: 11px;
    text-align: left;
    opacity: .8;
}

#order .basketFixed li .data {
    font-weight: 500;
    color: var(--textColor);
    font-size: 14px;
    text-align: right;
    white-space: nowrap;
}

#order .basketFixed li:last-child .data {
    font-weight: 700;
    color: var(--primaryColor);
    opacity: 1;
}

#order .basketFixed .stickyBox>.button {
    width: 100%;
    text-align: center;
    border-top: 15px;
    background-color: var(--success);
    color: White;
    margin-top: 15px;
    line-height: 50px;
}

#order .basketFixed .stickyBox>.button:hover {
    background-color: var(--successHover);
}

.row.orderStep {
    display: flex;
}

/*  Order Step  */
.orderStep {
    position: relative;
    width: 85%;
    left: 7.5%;
}

.orderStep:before {
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
    background-color: #ececf5;
    border-radius: 15px;
    -webkit-box-shadow: inset 0px 2px 8px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 2px 8px -4px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 2px 8px -4px rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.orderStep:after {
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
    background-color: #ececf5;
    border-radius: 15px;
    -webkit-box-shadow: inset 0px 2px 8px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 2px 8px -4px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 2px 8px -4px rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.orderStep>div {
    position: relative;
}

.orderStep>div:before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #ececf5;
    border-radius: 100%;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
    -moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
    z-index: 3;
}

.orderStep>div:first-child:before {
    left: 0;
}

.orderStep>div:first-child {
    text-align: left;
}

.orderStep>div:last-child:before {
    right: 0;
    left: initial;
}

.orderStep>div:last-child {
    text-align: right;
}

.orderStep>div:nth-child(2):before {
    left: calc(30% - 12.5px);
}

.orderStep>div:nth-child(2) span {
    left: -5%;
}

.orderStep>div:nth-child(3):before {
    right: calc(36% - 12.5px);
}

.orderStep>div:nth-child(3) span {
    left: 30%;
}

.orderStep>div:first-child span {
    left: -7%;
}

.orderStep>div:last-child span {
    right: -7%;
}

.orderStep>div span {
    position: relative;
    bottom: -30px;
    color: var(--textColor);
    opacity: .6;
    font-size: 14px;
    font-weight: 500;
}

.orderStep>div span a {
    color: var(--textColor);
}

/*  Order Step End  */
/*  Fatura ve Teslimat  */
form {
    /*
    background-color: white;
        padding: 25px;
        box-shadow: 0px 0px 35px 0px rgb(0 0 0 / 6%);
        border-radius: 10px;
        */
}

form .inputBox {
    padding-top: 9px;
    padding-bottom: 9px;
}

form .inputBox span {
    display: block;
    font-size: 13px;
    color: var(--textColor);
    font-weight: 400;
    opacity: .8;
    letter-spacing: .5px;
    position: relative;
    bottom: -36px;
    transition: .3s;
    padding: 0px 15px;
}

form .inputBox:hover span {
    bottom: 0px;
}

form .inputBox input {
    line-height: 50px;
    outline: none;
    transition: .3s;
    font-weight: 500;
}

form .inputBox textarea {
    outline: none;
    transition: .3s;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

form .inputBox input:focus,
form .inputBox textarea:focus {
    border-color: var(--primaryColor);

}

form .inputBox input,
form .inputBox textarea,
form .inputBox select {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ececf5;
    color: var(--textColor);
    border-radius: 5px;
    padding: 0px 15px;
}

form .inputBox select {
    height: 60px;
    outline: none;
}

form .inputBox.focus span,
form .inputBox.full span {
    bottom: 0;
}

.delivery form .inputBox,
.payment form .inputBox {
    margin-bottom: 0px;
}

.delivery .adresSec {
    background-color: #ececf5;
    padding: 15px;
    border-radius: 7px;
    display: flex;
}

.delivery .adresSec div {
    width: 60%;
    color: var(--textColor);
    opacity: .8;
    font-size: 14px;
    line-height: 18px;
    position: relative;
    padding-left: 15px;
}

.delivery #adresSec {
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    height: 40px;
    width: 40%;
    padding: 0px 15px;
}

.delivery .owl-next {
    right: 0;
}

.delivery .orderCarousel .owl-next,
.delivery .orderCarousel .owl-prev {
    bottom: 0;
    top: initial;
    transform: scale(.8);
}

.delivery .orderCarousel .owl-prev {
    left: 30%;
}

.delivery .orderCarousel .owl-next {
    right: 30%;
}

/*  Fatura ve Teslimat End  */
/*  Payment   */
.payment {}

.payment .payItem {
    padding: 0px 5px;
}

.payment .payItem label {
    background-color: white;
}

.payment .payItem form {
    box-shadow: none;
}

.payment label {
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0px 25px;
    line-height: 60px;
    width: 100%;
    border-radius: 7px;
    position: relative;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.payment label:hover {
    border-color: var(--success) !important;
}

.payment label>input {
    display: none;
}

.payment label .title {
    font-weight: 600;
    color: var(--textColor);
    margin-top: 0;
    display: block;
    transition: .5s;
}

.payment label .title:before {
    content: "";
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: #ececf5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 26px;
    height: 26px;
    border-radius: var(--radius);
}

.payment label .title:after {
    font-family: 'default' !important;
    content: "\e917";
    position: absolute;
    right: 15px;
    top: 15px;
    width: 26px;
    height: 26px;
    border-radius: var(--radius);
    line-height: 26px;
    text-align: center;
    opacity: 0;
    transform: scale(.6);
    font-size: 20px;
    transition: .3s;
}

.payment label:hover .title:after {
    opacity: .3;
}

.payment label.active .title:after {
    right: 8px;
    top: 10px;
    width: 26px;
    opacity: 1;
    transform: scale(1.3);
    color: var(--success);
}

.payment label.active .title:before {
    background-color: #ffffff;
    border: 1px solid rgb(131 187 18);
}

.payment label b.copyIban {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--primaryColor);
    margin-top: 5px;
}

.payment label.active {
    border-color: var(--success) !important;
    background-color: #6b980d0f;
}

.payment label .activeContent {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--success);
    color: white;
    font-size: 13px;
    line-height: 23px;
    padding: 0px 10px;
    border-bottom-right-radius: 10px;
    opacity: 0;
    transition: .5s;
}

.payment label .activeContent:before {
    font-family: 'default' !important;
    content: "\eb05";
    position: absolute;
    bottom: -16px;
    left: 0;
    font-size: 16px;
    line-height: 16px;
    color: var(--success);
}

.payment label .activeContent:after {
    font-family: 'default' !important;
    content: "\eb05";
    position: absolute;
    right: -16px;
    top: 0;
    font-size: 16px;
    line-height: 16px;
    color: var(--success);
}

.payment label.active .title {
    margin-top: 15px;
}

.payment label.active .activeContent {
    opacity: 1;
}

.payment label article {
    line-height: 20px;
    color: var(--textColor);
    opacity: .6;
}

.payment .odemeTalebi label article {
    font-size: 18px;
    opacity: 1;
    color: #6b980d;
    font-weight: 600;
}

.payment label .info {
    margin-top: 15px;
    margin-bottom: 35px;
    display: block;
}

.payment label .info b {
    font-size: 14px;
    line-height: 14px;
    display: block;
    font-weight: 500;
}

.payment label .info span {
    display: block;
    font-size: 20px;
    margin-top: 10px;
    font-weight: 700;
    line-height: 20px;
    color: var(--secondaryColor);
}

.payment label form span {
    line-height: 1.5;
}

.payment label .cartForm {
    margin-bottom: 25px;
    padding: 0px;
}

.payment label .cartForm>.inputBox.col-4 {
    padding-left: 5px;
    padding-right: 5px;
}

.payment label .cartForm>.inputBox:nth-last-child(3) {
    padding-left: calc(var(--bs-gutter-x) / 2) !important;
}

.payment label .cartForm>.col-4:last-of-type {
    padding-right: calc(var(--bs-gutter-x) / 2) !important;
}

.payment label .info ul {
    font-size: 14px;
    line-height: 18px;
    color: var(--textContent);
    margin-top: 10px;
}

.payment label .info ul li {
    margin-bottom: 10px;
    opacity: .8;
}

.payment label .info ul li:last-child {
    font-weight: 700;
    opacity: 1;
}

.payment .infoBox {
    margin-top: 25px;
    color: var(--textColor);
    opacity: .8;
    font-size: 15px;
}

/*  Payment End   */
/*  Order Check  */
.orderCheck {
    min-height: calc(100vh - 140px);
    display: flex;
    padding: 120px 0px;
    padding-top: 0px !important;
    position: relative;
}

.orderCheck:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(66, 162, 2, 1) 100%);
    width: 100%;
    height: 25vh;
    opacity: .6;
}

.orderCheck.unSuccess:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(162, 2, 2, 0.5900735294117647) 100%);
    width: 100%;
    height: 25vh;
    opacity: 1;
}

.orderCheck .head {
    text-align: center;
    color: var(--success);
    margin-bottom: 3% !important;
}

.orderCheck .head * {
    text-align: center !important;
    color: var(--success);
}

.orderCheck .head .lottie {
    height: 300px;
}

.orderCheck .head .lottie.errorAnimation {
    display: none;
}

.orderCheck.unSuccess .head .lottie.errorAnimation {
    display: block;
}

.orderCheck.unSuccess .head .lottie.successAnimation {
    display: none;
}

.orderCheck .head i {
    font-size: 30px;
    line-height: 30px;
    box-shadow: 0px 0px 0px 5px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    padding: 15px;
    margin-bottom: 15px;
    display: inline;
}

.orderCheck .head article {
    color: var(--textColor);
}

.orderCheck .orderCode {
    text-align: center;
    margin-bottom: 5%;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
}

.orderCheck .orderCode b {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
}

.orderCheck .orderCode i {
    font-size: 14px;
    cursor: pointer;
}

.orderCheck .orderCode span {
    display: block;
    font-weight: 400;
    color: var(--textColor);
    opacity: .7;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.orderCheck table {
    width: 55%;
    display: table;
    align-items: center;
    margin: auto;
}

.orderCheck table .iban {
    font-weight: 700;
    vertical-align: middle;
}

.orderCheck table .bank {
    font-weight: 500;
    display: block;
    margin: 0;
    font-size: 12px;
    opacity: .6;
}

.orderCheck table span {
    opacity: .8;
    font-size: 14px;
    margin-left: 15px;
    letter-spacing: .5px;
}

.orderCheck table strong {
    color: var(--textColor);
    font-weight: 500;
}

.orderCheck table b {
    color: var(--success);
}

.orderCheck .button {
    margin-top: 45px;
}

.orderCheck .notify {
    width: 50%;
    padding: 20px 25px;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    display: table;
    margin: auto;
    margin-top: 25px;
    background-color: #42a1041f;
    color: var(--textColor);
}

.orderCheck .bankList {
    padding: 45px 0px;
    padding-bottom: 0px;
}

.orderCheck .bankList li {
    margin-bottom: 25px;
}

.orderCheck .bankList li.copied .row {
    background-color: #4fc10433;
}

.orderCheck .bankList li.copied .copy {
    color: var(--success);
}

.orderCheck .bankList li .row {
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: .3s;
}

.orderCheck .bankList li .bank {
    font-weight: 500;
    font-size: 13px;
    color: var(--secondaryColor);
    letter-spacing: .5px;
}

.orderCheck .bankList li .bank span {
    background-color: var(--secondaryColor);
    color: white;
    aspect-ratio: 1/1;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    line-height: initial;
    font-weight: 300;
}

.orderCheck .bankList li .copy {
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    color: var(--secondaryColor);
    opacity: .5;
}

.orderCheck .bankList li .copy:hover {
    opacity: 1;
}

.orderCheck .bankList li .name {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondaryColor);
    margin-top: 10px;

}

.orderCheck .bankList li .iban {
    font-weight: 700;
    font-size: 17px;
    line-height: 17px;
    color: var(--secondaryColor);
    letter-spacing: .5px;
}

.orderCheck .bankList .row {
    margin: 0px;
}

.orderCheck .bankList .head h2 {
    color: var(--textColor) !important;
}

.orderCheck .orderSummary {
    border-top: 0px;
}

.orderCheck.unSuccess .head i {
    padding: 0px;
    box-shadow: none;
    font-size: 50px;
    line-height: 50px;
}

.orderCheck.unSuccess .head * {
    color: firebrick;
}

.orderCheck table tr td:first-child {
    width: 48%;
}

@media screen and (max-width:1440px) {
    .orderCheck .head {
        margin-bottom: 4% !important;
        margin-top: 2% !important;
    }

    #order .orderItems>.row div:nth-child(2)>.center-content {
        zoom: 93%;
    }

    #order .basketFixed .stickyBox>.button {
        margin-top: 15px;
    }

    #order.payment .payItem label,
    #order .basketFixed .box .inputBox,
    .orderCheck table {
        zoom: 110%;
    }

    #order.delivery form>.row {
        zoom: 103%;
    }

    #order .owl-carousel img {
        width: 80%;
        margin: auto;
    }

    #order .basketFixed .stickyBox>.button {
        zoom: 130%;
    }

    #order {
        padding: 25px 0px;
    }

    #order .basketFixed .box {
        zoom: 108%;
    }

    #order .orderItems .actions {
        transform: scale(1.1);
    }

    #order .orderItems .qtyContent .qty {
        transform: scale(1);
        background-color: #e9e9f2;
    }

    #order .orderItems .qtyUnit .oldPrice,
    #order .orderItems .qtyUnit .price,
    #order .orderItems .tax .price,
    #order .orderItems .total .price {
        font-size: 17px;
    }

    #order .orderItems .name {
        font-size: 13px;
    }

    #order .orderItems>.row .row div:first-child div ul {
        font-size: 16px;
    }

    #order .orderItems .product {
        min-width: initial !important;
        max-width: initial !important;
    }

    #order .orderItems>.row .row div:first-child div div:nth-child(2) {
        font-size: 17px;
    }

    .col-1440-m0 {
        margin: 0px;
    }
}

@media screen and (max-width:992px) {
    #order .head {
        margin-bottom: 15px;
    }

    #order .head .alert {
        max-width: 100% !important;
        margin-top: 15px;
        text-align: left !important;
    }

    #order .orderItems .qtyContent .qty {
        width: fit-content !important;
    }

    #order .orderItems .qtyContent {
        min-width: 100%;
        max-width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .payItem {
        margin-bottom: 10px;
    }

    .row.pays {
        zoom: 80%;
    }

    .delivery #adresSec {
        width: 100%;
    }

    .delivery .adresSec div {
        width: 100%;
        left: 0;
        padding: 10px;
    }

    form .inputBox {
        padding-bottom: 0px;
    }

    .delivery .adresSec {
        flex-wrap: wrap
    }

    #order .basketFixed .stickyBox>.button {
        width: 75%;
        display: table;
        margin: auto;
        margin-top: 15px;
        position: sticky;
        bottom: 15px;
    }

    #order .basketFixed ul {
        display: flex;
        flex-wrap: wrap;
    }

    #order .basketFixed ul li {
        margin-bottom: 0px;
        padding-top: 10px;
    }

    #order .basketFixed ul li:nth-child(1),
    #order .basketFixed ul li:nth-child(2),
    #order .basketFixed ul li:nth-child(3),
    #order .basketFixed ul li:nth-child(4) {
        width: 50%;
        padding-left: 15px;
        padding-right: 15px;
    }

    #order .basketFixed ul li:nth-child(1),
    #order .basketFixed ul li:nth-child(3) {
        padding-left: 0px;
    }

    #order .basketFixed ul li:nth-child(2),
    #order .basketFixed ul li:nth-child(4),
    #order .basketFixed ul li:nth-child(6) {
        padding-right: 0px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }

    #order .basketFixed ul li:nth-child(5) {
        width: 100%;
        font-weight: 600;
        font-size: 16px;
    }

    #order .basketFixed ul li:nth-child(5) .title {
        display: flex;
        align-items: center;
    }

    #order .basketFixed ul li:nth-child(5) .data {
        font-size: 16px;
    }

    #order .basketFixed {
        padding: 0px;
        margin-top: -5px;
    }

    #order {
        padding: 70px 0px;
    }

    #order .orderItems .actions {
        margin-left: auto;
        justify-content: flex-end;
    }

    #order .orderItems {
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 5px;
        border-radius: 0px;
    }

    #order .orderItems .mobileActions {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        padding-top: 5px;
    }

    #order .orderItems .product .name {
        display: none;
    }

    #order .orderItems>.row>div:last-child {
        zoom: 85%;
    }

    #order .orderItems .total {
        width: 50%;
        max-width: 50%;
        padding-left: calc(var(--bs-gutter-x)/ 2);
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 5px;
    }

    #order .orderItems .qtyUnit {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }

    #order .orderItems .tax {
        min-width: 20%;
        width: 20%;
        max-width: 30%;
        padding: 0px;
    }

    #order .orderItems .product {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    #order .orderItems>.row>div:first-child {
        width: 35%;
        padding: 0;
    }

    #order .basketFixed {
        width: 100%;
        margin-top: 15px;
    }

    .orderCheck table,
    .orderCheck .notify {
        width: 95%;
        zoom: 85%;
    }

    .orderCheck {
        padding: 85px 0px !important;
    }

    .orderStep {
        display: none;
    }

}


#order .head .alert {
    font-weight: 300;
    font-size: 13px;
    text-align: right;
    line-height: 16px;
    max-width: 70%;
    float: right;
    padding: 5px;
}

#order .head .alert:before {
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 7px;
    background-color: #bb111117;
    box-shadow: 0px 0px 0px 1px #bb11112b;
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: -1;
    transition: .2s;
    animation: blinker 2s linear infinite
}

#order .head .alert span {
    text-decoration: underline;
    font-weight: 400;
    font-size: 12px;
    margin-top: 0px;
    width: initial !important;
    display: inline-block;
}

/*  Order Check End  */
/* ===== Page --> Order ===== */
/* ===== Page --> Profile ===== */
#order {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* order Aside */
#orderAside {}

#orderAside .visual {
    background-color: transparent;
    text-align: left;
}

#orderAside .visual .lottie {
    border-radius: 100%;
    overflow: hidden;
    height: 100px;
    aspect-ratio: 1/1;
}

#orderAside .head {
    margin-bottom: 35px;
}

#orderAside .head .data {
    font-weight: 700;
}

#orderAside {
    line-height: 50px;
}

#orderAside li {
    margin-bottom: 5px;
}

#orderAside a {
    color: var(--textColor);
    opacity: .8;
    font-size: 16px;
    display: flex;
    padding: 0px 15px;
    border-radius: var(--radius);
    transition: .2s;
}

#orderAside a.active {
    background-color: var(--primaryColor);
    color: white;
    opacity: 1;
}

#orderAside a:hover {
    background-color: var(--primaryColor);
    color: white;
    opacity: 1;
}

#orderAside a i {
    margin-right: 5px;
    font-size: 15px;
    align-items: center;
    min-width: 25px;
    text-align: center;
    align-items: center;
    display: grid;
}

#orderAside .orderFilter {}

#order .orderFilter .head {
    font-weight: 700;
    font-size: 20px;
    color: var(--primaryColor);
    padding: 0px 15px;
    margin-top: 7px;
}

#order .orderFilter ul {
    display: flex;
    padding-left: 15px;
    margin-top: 10px;
}

#order .orderFilter ul li {
    position: relative;
    margin-right: 10px;
}

#order .orderFilter ul li input {
    border-radius: var(--radius);
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0px 15px;
    line-height: 36px;
    min-width: 280px;
    font-size: 12px;
}

#order .orderFilter ul li input:focus {
    outline-color: var(--primaryColor);
}

#order .orderFilter ul li a {
    border-radius: var(--radius);
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0px 15px;
    line-height: 36px;
    font-size: 12px;
    text-align: center;
    color: var(--textColor);
    transition: .2s;
    display: flex;
    background-color: #f4f6f7;
}

#order .orderFilter ul li a.active,
#order .orderFilter ul li a:hover {
    background-color: var(--primaryColor);
    color: white;
}

#order .orderFilter ul li a i {
    display: grid;
    align-items: center;
    margin-right: 5px;
}

#order .orderPane .box {
    padding: 15px 18px;
    background-color: transparent;
    border-radius: 5px;
    font-weight: 700;
    color: var(--textColor);
    font-size: 14px;
    margin-top: 15px;
}

#order .orderList {
    margin-top: 10px;
    margin-bottom: 10px;
}

#order .orderList li {
    margin-bottom: 15px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
}

#order .orderList li.on {
    padding-bottom: 35px;
}

#order .orderList li .toggle {
    cursor: pointer;
    padding: 15px;
    transition: .2s;
    position: relative;
    z-index: 5;
    background-color: #f3f3fb;
    border-radius: var(--radius);
}

#order .orderList li .toggle:hover {
    background-color: #ececf5;
}

#order .orderList li .toggle:hover .caret i {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor) !important;
    color: white;
    opacity: 1;
}

#order .orderList li .toggle .visual {
    display: table;
    /*margin: auto;
    text-align: center;*/
}

#order .closing .visual {
    transition: .1s;
    opacity: 0;
}

#order .orderList li.on .toggle .visual {
    display: block;
    margin: auto;
    height: 522px;
    overflow-y: auto;
}

#order .orderList li .toggle .visual img {}

#order .orderList li.on .toggle .visual {
    /*max-width: fit-content;*/
}

#order .orderList li .toggle .title {
    font-weight: 300;
    color: var(--textColor);
    font-size: 13px;
    align-items: center;
    display: flex;
}

#order .orderList li .toggle .title>div>div span:last-child {
    font-weight: 700;
    font-size: 15px;
    color: var(--primaryColor);
}

#order .orderList li .toggle .title>div>div:last-child i {
    margin-right: 5px;
    float: left;
    line-height: 20px;
    font-size: 12px;
}

#order .orderList li .toggle .durum,
#order .orderList li .toggle .durum>div>div {
    align-items: center;
    display: flex;
}

#order .orderList li .toggle .durum i {
    font-size: 13px;
    line-height: 13px;
    border-radius: 100%;
    color: var(--textColor);
    aspect-ratio: 1/1;
    text-align: center;
    height: 18px;
    width: 18px;
    min-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#order .orderList li .toggle .durum span {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: var(--textColor);
    font-size: 14px;
    padding-left: 8px;
}

#order .orderList li .toggle .price {
    align-items: center;
    display: flex;
}

#order .orderList li .toggle .price>div>div:first-child {
    font-weight: 800;
    color: var(--success);
    font-size: 18px;
    line-height: 18px;
}

#order .orderList li .toggle .price>div>div:last-child {
    font-weight: 400;
    color: var(--textColor);
    font-size: 14px;
    line-height: 14px;
    opacity: .8;
}

#order .orderList li .toggle .price>div>div:last-child i {
    margin-right: 3px;
}

#order .orderList li .toggle .caret {
    align-items: center;
    display: flex;
}

#order .orderList li .toggle .caret i {
    aspect-ratio: 1/1;
    font-size: 10px;
    border-radius: 100%;
    border: solid 1px;
    padding: 10px;
    color: var(--textColor);
    opacity: .5;
    margin-right: 15px;
    transition: .2s;
    transform: rotate(0deg);
}

#order .orderList li .toggle .caret i:hover {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor) !important;
    color: white;
    opacity: 1;
}

#order .orderList li.on .toggle .caret i {
    transform: rotate(180deg);
    display: block;
    background-color: var(--primaryColor);
    border-color: var(--primaryColor) !important;
    color: white;
    opacity: 1;
}

#order .orderList li .toggle .visual ul {
    display: flex;
    transition: .2s;
}

#order .orderList li .toggle .visual li {
    border: none;
    left: 0;
    top: 0;
    margin-bottom: 0px;
    display: flex;
}

#order .orderList li .toggle .visual li a {
    height: auto;
    min-width: 40px;
    max-width: 65px;
    display: flex;
    border-radius: var(--radius);
    border: solid 2px white !important;
    background-color: #ececf5;
    transition: .3s;
    overflow: hidden;
    align-items: end;
    -webkit-box-shadow: -7px 0px 4px -3px rgb(0 0 0 / 24%);
    -moz-box-shadow: -7px 0px 4px -3px rgb(0 0 0 / 24%);
    box-shadow: -7px 0px 4px -3px rgb(0 0 0 / 24%);
}

#order .orderList li.on .toggle .visual li a {
    aspect-ratio: 1/1;
    display: block;
}

#order .orderList li .toggle .visual li {}

#order .orderList li .toggle .visual li:nth-child(n+2) {
    margin-left: -35px;
}

#order .orderList li.on .toggle .visual img {
    box-shadow: none;
}

#order .orderList li.opening .visual ul {
    display: block;
    margin-top: 141px;
}

#order .orderList li.opening .visual ul li {
    margin-left: 0px !important;
    padding-left: 4px;
    margin-bottom: 5px;
}

#order .orderDetail {
    padding: 10px;
    padding-right: 30px;
}

#order .orderDetail .multiProductItem {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: dashed 1px rgba(0, 0, 0, 0.1);
}

#order .orderDetail .multiProductItem:nth-last-child(2) {
    border-bottom: none !important;
}

#order .orderDetail>.row>div>.row>div:first-child ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

#order .orderDetail>.row>div>.row>div ul.buttons {
    display: flex;
    align-items: center;
    gap: 5px;
}

#order .orderDetail ul li {
    border: none !important;
    margin: 0px;
}

#order .orderDetail>.row>div>.row>div ul.inList {
    font-size: 13px;
    line-height: 12px;
    font-weight: 400;
    color: var(--textColor);
}

#order .orderDetail ul li.name {
    font-size: 13px;
    line-height: 12px;
    font-weight: 400;
    color: var(--textColor);
}

#order .orderDetail ul li.price {
    color: var(--success);
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    margin-top: 5px;
}

#order .orderDetail .buttons li a {
    color: var(--textColor);
    font-size: 13px;
    font-weight: 500;
    padding: 0px 15px;
    line-height: 30px;
}

#order .orderDetail .buttons li:first-child a {
    background-color: var(--success);
    color: white;
    border-radius: var(--radius);
    transition: .2s;
}

#order .orderDetail .buttons li:last-child {
    margin-left: 7px;
}

#order .orderDetail .buttons li:last-child a {
    background-color: var(--primaryColor);
    color: white;
    border-radius: var(--radius);
}

#order .orderDetail .buttons li a:hover {
    background-color: var(--primaryColor);
}

#order .adress {
    background-color: #f9f9fc;
    border-radius: 5px;
    padding: 25px;
    border: solid 1px rgba(0, 0, 0, 0.08);
    height: 100%;
}

#order .adress .title {
    font-weight: 700;
    font-size: 16px;
    color: var(--primaryColor);
    opacity: .8;
    margin-bottom: 20px;
}

#order .adress ul li b {
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
    color: var(--textColor);
}

#order .adress ul li .adresName {
    font-size: 12px;
    font-weight: 700;
}

#order .adress ul li .adresContent {
    font-size: 13px;
    color: var(--textColor);
    font-weight: 300;
    opacity: .7;
}

#order .adress ul li .person {
    font-size: 13px;
    color: var(--textColor);
    font-weight: 700;
}

#order .adress ul li .person span:first-child {
    padding-right: 5px;
}

#order .adress ul li .person span:last-child {
    padding-left: 5px;
}

#order .pay {
    background-color: red;
    padding: 25px;
    background-color: #f9fff7;
    border-radius: 5px;
    height: 100%;
    border: solid 1px rgba(0, 0, 0, 0.08);
}

#order .pay .title {
    font-weight: 700;
    font-size: 16px;
    color: var(--primaryColor);
    opacity: .8;
    margin-bottom: 20px;
}

#order .pay ul li b {
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
    color: var(--textColor);
}

#order .pay table {
    font-weight: 600;
    color: var(--textColor);
    font-size: 13px;
}

#order .pay table tr td {
    line-height: 30px;
}

#order .pay table tr td:last-child {
    text-align: right;
    color: var(--primaryColor);
    font-weight: 700;
    opacity: .8;
}

#order .pay table tr:nth-last-child(2) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
}

#order .pay table tr:nth-last-child(2) td:last-child {
    font-size: 18px;
    font-weight: 800;
    line-height: 46px;
}

#order .pay table tr:nth-last-child(2) td:first-child {
    font-size: 16px;
    font-weight: 800;
    line-height: 46px;
}

#order .pay table tr .step {
    text-align: center;
    border-radius: 5px;
    line-height: 12px;
    font-size: 11px;
    word-spacing: 999px;
    font-weight: 600;
    color: var(--textColor);
}

#order .pay table tr .step.active {
    color: var(--textColor);
}

#order .pay table tr .status {
    position: relative;
    display: flex;
}

#order .pay table tr .status li {
    position: relative;
    z-index: 2;
}

#order .pay table tr .status i {
    line-height: 36px;
    display: block;
    text-align: center;
}

#order .pay table tr .status i:before {
    color: white;
    background-color: #dddddd;
    aspect-ratio: 1/1;
    padding: 5px;
    border-radius: 100%;
}

#order .status:before {
    content: "";
    position: absolute;
    height: 5px;
    border-radius: 5px;
    background-color: #dcdcdc;
    width: calc(100% - 25%);
    top: 16px;
    left: calc(25% - 12.5%);
    z-index: 0;
}

#order .status:after {
    content: "";
    position: absolute;
    height: 5px;
    border-radius: 5px;
    background-color: var(--success);
    width: calc(100% - 25%);
    top: 16px;
    left: calc(25% - 12.5%);
    z-index: 0;
}

#order .content {
    height: 0;
    overflow: hidden;
    transition: .3s;
}

#order .on .content {
    height: 490px;
}

#order .on .toggle {
    background-color: transparent !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-bottom: solid 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

#order .on .visual ul {
    opacity: 0;
}

#order .visualClose .visual ul {
    opacity: 1;
}

#order .loadingCss {
    display: none;
}

#order .on .loadingCss {
    display: block;
}

#order .on.opening .loadingCss {
    display: none;
}

#order .durum.ready i:before {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
    aspect-ratio: 1/1;
    display: inline-flex;
}

#order .durum.ok i:before {
    background-color: var(--success);
    color: white;
    border-radius: 100%;
    padding: 4px;
    font-size: 10px;
    line-height: 10px;
    aspect-ratio: 1/1;
}

#order.user .tab-content {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 0px;
    background-color: #f3f3fb;
    padding: 25px;
}

#order.user .nav-link {
    font-weight: 600;
    font-size: 14px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
}

#order.user .nav-link.active {
    background-color: #f3f3fb;
    border-bottom-color: #f3f3fb;
}

#order.user .tab-content .box .head .title {
    color: var(--primaryColor);
    font-size: 20px;
    line-height: 20px;
}

#order.user .tab-content .box .head article {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font) !important;
    margin-left: 0;
}

#order.user .formTable {
    height: 100%;
    background-color: #ececf5;
    padding: 25px;
    border-radius: 15px;
    border: solid 1px rgba(0, 0, 0, 0.1);
}

#order.user .box button {
    border-radius: var(--radius);
    transition: .2s;
    border: none;
}

#order.user .box button:hover {
    background-color: var(--success);
}

#order.user .formTable .title {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 16px;
    margin-bottom: 25px;
}

#order.user .formTable .title i {
    margin-right: 7px;
}

#order.user .formTable .formLine {
    margin-bottom: 15px;
}

#order.user .formTable .formLine .flexContent {
    display: flex;
    gap: 7px;
    align-items: baseline;

}

#order.user .formTable .formLine label {
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--textColor);
    opacity: .8;
    font-size: 13px;
}

#order.user .formTable .formLine ul {
    display: flex;
}

#order.user .formTable .formLine ul li {
    width: 100%;
}

#order.user .formTable .formLine ul li .form-check-input {
    width: 25px;
    height: 25px;
    margin: 0px;
    cursor: pointer;
}

#order.user .formTable .formLine ul li .form-check-label {
    margin-bottom: 0px;
    line-height: 25px;
    display: inline-block;
    padding-left: 10px;
    cursor: pointer;
}

#order.user .formTable .formLine ul li .form-check {
    padding: 0px;
}

#order .formLine.switchBar {
    margin-bottom: 25px !important;
}

#order .formLine.switchBar article {
    font-size: 16px;
    font-weight: 300;
    margin-right: 35px;
    width: 100%;
}

#order .formLine.switchBar .form-switch .form-check-input {
    width: 60px;
    height: 30px;
    cursor: pointer;
}

#order .formLine.switchBar {}


input[type="date"]::-webkit-datetime-edit {
    color: transparent;
}

input[type="date"]:focus::-webkit-datetime-edit {
    color: var(--textColor);
}

.inputBox.focuss input[type="date"]::-webkit-datetime-edit,
.inputBox.focuss input[type="date"]:focus::-webkit-datetime-edit,
.inputBox.full input[type="date"]::-webkit-datetime-edit,
.inputBox.full input[type="date"]:focus::-webkit-datetime-edit {
    color: var(--textColor) !important;
}


#order.user .formTable .formLine input[type="text"]:focus {
    outline-color: var(--primaryColor);
}

#order .cancel {
    background-color: #de0404;
    color: white;
    padding: 0px 10px;
    border-radius: 5px;
    line-height: 22px;
    font-size: 11px;
    margin-left: 14px;
}

#order .tuyo a {
    color: var(--primaryColor);
    font-weight: 400;
}

#order .tuyo article {
    color: var(--textColor);
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
}

#order .tuyo article b {
    color: var(--primaryColor);
    font-weight: 800;
}

#order .cancelToggle {
    background-color: #de0404;
    color: white !important;
    padding: 0px 10px;
    border-radius: 5px;
    line-height: 30px;

}

#order .cancelToggle i {
    font-size: 8px;
    margin-left: 5px;

}

#order #list .box {
    padding: 0px !important;
    background-color: transparent !important;
}

#order .form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

/* Ödeme Onayı Bekleniyor İse  */
.odeme_bekliyor:after {
    width: 0px !important;
}

#order .pay table tr .status.odeme_bekliyor li:nth-child(-n+1) * {
    color: var(--success);
}

#order .pay table tr .status.odeme_bekliyor li:nth-child(-n+1) i:before {
    background-color: var(--success);
}

/* Ödeme Onayı Bekleniyor İse End */
/* Ödeme Başarılı İse */
.odeme_basarili:after {
    width: calc(20% + 20px) !important;
}

#order .pay table tr .status.odeme_basarili li:nth-child(-n+2) * {
    color: var(--success);
}

#order .pay table tr .status.odeme_basarili li:nth-child(-n+2) i:before {
    background-color: var(--success);
}

/* Ödeme Başarılı İse End */
/* Hazırlanıyor İse  */
.hazirlaniyor:after {
    width: calc(50% - 25%) !important;
}

#order .pay table tr .status.hazirlaniyor li:nth-child(-n+2) * {
    color: var(--success);
}

#order .pay table tr .status.hazirlaniyor li:nth-child(-n+2) i:before {
    background-color: var(--success);
}

/* Hazırlanıyor İse End  */
/* Yola Çıktı İse  */
.yola_cikti:after {
    width: calc(75% - 25%) !important;
}

#order .pay table tr .status.yola_cikti li:nth-child(-n+3) * {
    color: var(--success);
}

#order .pay table tr .status.yola_cikti li:nth-child(-n+3) i:before {
    background-color: var(--success);
}

/* Yola Çıktı İse End  */
/* Teslim Edildi */
.teslim_edildi:after {
    width: calc(100% - 25%) !important;
}

#order .pay table tr .status.teslim_edildi li:nth-child(-n+4) * {
    color: var(--success);
}

#order .pay table tr .status.teslim_edildi li:nth-child(-n+4) i:before {
    background-color: var(--success);
}

/* Teslim Edildi End */




#order.adreslerim {}

#order.adreslerim .adressList {}

#order.adreslerim .adressList .box {
    padding: 35px;
    border: solid 1px rgba(0, 0, 0, 0.07);
    background-color: white;
    position: relative;
    height: 100%;
}

#order.adreslerim .adressList .box .t-center {
    text-align: center;
}

#order.adreslerim .adressList .box {
    border-radius: 7px;
}

#order.adreslerim .adressList>li {
    margin-bottom: 15px;
}

#order.adreslerim .adressList .box .title {
    font-weight: 500;
    color: var(--primaryColor);
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

#order.adreslerim .adressList .box .person {
    font-weight: 700;
    color: var(--primaryColor);
    font-size: 14px;
    opacity: .8;
}

#order.adreslerim .adressList .box .adressContent {
    font-weight: 300;
    color: var(--textColor);
    font-style: italic;
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    min-height: 80px;
}

#order.adreslerim .adressList .box .tc {
    font-weight: 500;
    font-size: 14px;
    color: var(--textColor);
    opacity: .9;
}

#order.adreslerim .adressList .box .tc:before {
    content: "T.C.";
    color: var(--textColor);
    font-size: 12px;
    margin-right: 5px;
}

#order.adreslerim .adressList .box .tel {
    color: var(--textColor);
    font-size: 14px;
    opacity: .8;
    font-weight: 500;
}

#order.adreslerim .adressList .box .tel i {
    color: var(--textColor);
    font-size: 12px;
    margin-right: 5px;
}

#order.adreslerim .adressList .box .mail {
    color: var(--textColor);
    font-size: 14px;
    opacity: .8;
    font-weight: 500;
}

#order.adreslerim .adressList .box .mail i {
    color: var(--textColor);
    font-size: 12px;
    margin-right: 5px;
}

#order.adreslerim .box .boxControl {
    position: absolute;
    right: 10px;
    top: 10px;
}

#order.adreslerim .box .boxControl ul {}

#order.adreslerim .box .boxControl ul li {}

#order.adreslerim .box .boxControl ul li a {
    color: var(--textColor);
    font-size: 14px;
    display: block;
    padding: 5px;
}

#order.adreslerim a.box {
    transition: .2s;
}

#order.adreslerim a.box:hover {
    background-color: var(--primaryColor);
    color: whitesmoke;
}

#order.adreslerim a.box:hover i {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

#addToAdress form .row>div {
    margin-bottom: 15px;
}

#addToAdress form .row>div input[type="text"],
#addToAdress form .row>div select,
#addToAdress form .row>div textarea {
    width: 100%;
    padding: 0px 15px;
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    line-height: 40px;
    font-size: 13px;
    font-weight: 500;
}

#addToAdress form .row>div select {
    height: 40px;
}

#addToAdress button {
    border-radius: var(--radius);
    transition: .2s;
}

#addToAdress button:hover {
    background-color: var(--success);
}

.adressList .form-switch {
    margin-top: -17px;
    margin-bottom: 20px;
    height: 20px;
    line-height: 27px;
    cursor: pointer;
}

.adressList .form-switch .form-check-input {
    height: 20px;
    width: 33px;
    outline: none;
    box-shadow: none;
    margin-right: 7px;
    cursor: pointer;
}

.adressList .form-switch .form-check-label {
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
}

.adressList .form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.modal-backdrop {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: #0b39548c;
}

.visual.fakeToggle {
    position: relative;
}

.placeholderNumber {
    position: absolute;
    right: -5%;
    top: 5%;
    width: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ececf5;
    font-weight: 500;
    border-radius: 100%;
    margin-right: -7px;
    color: var(--primaryColor);
    box-shadow: 0px 0px 0px 1px rgb(214 214 214);
    font-size: 13px;
}

@media screen and (max-width: 992px) {
    #order .orderList li .toggle .visual li a {
        height: 40px;
    }

    #order {
        padding: 85px 0px !important;
    }

    #iptalSide {
        width: 90%;
        padding: 15px;
        zoom: 77%;
    }

    .iptalIade .price>div>div {
        white-space: nowrap;
    }
}

.iptalIade .visual img {
    border-radius: 5px;
}

.iptalIade .head {
    font-weight: 800;
    color: var(--primaryColor);
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 20px;
}

.iptalIade .head article {
    font-weight: 400;
    font-size: 16px;
}

.iptalIade>ul>li {
    margin-bottom: 10px;
}

.iptalIade>ul li>.row {
    border: solid 1px rgba(0, 0, 0, 0.1);
    margin: 0px;
    border-radius: 7px;
    padding: 10px;
}

.iptalIade .dateText {
    font-weight: 400;
    color: var(--textColor);
    font-size: 13px;
    line-height: 16px;
}

.iptalIade .dateText b {
    color: var(--primaryColor);
    font-size: 13px;
    line-height: 16px;
}

.iptalIade .price {
    font-weight: 400;
    color: var(--success);
    font-size: 16px;
    line-height: 16px;
    text-align: right;
}

.iptalIade .price .center-content>div:last-child {
    font-weight: 400;
    color: var(--textColor);
    font-size: 12px;
    line-height: 12px;
    margin-top: 3px;
}

.iptalIade .caret i {
    font-weight: 400;
    color: var(--textColor);
    font-size: 11px;
    line-height: 11px;
    padding: 10px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 100%;
}

.iptalIade .form-check-input {
    width: 20px;
    height: 20px;
}

.iptalIade .action a {
    background-color: #de0404;
    color: white;
    padding: 0px 20px;
    text-align: center;
    line-height: 36px;
    border-radius: 7px;
    width: 100%;
    font-size: 14px;
}

.iptalIade .action a.closeList {
    background-color: var(--primaryColor);
}

.iptalIade .action a.closeList i {
    font-size: 10px;
    line-height: 34px;
    float: left;
    margin-right: 5px;
}

.dropClick {}

.dropClick .sub {
    height: 0px;
    overflow: hidden;
    transition: .3s;
    padding-left: 0px;
    padding-right: 0px;
}

.dropClick .sub .row {
    border: none !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 0px;
}

.dropClick .fakeToggle .rotateClick {
    display: block;
    transition: .2s;
}

.dropClick .fakeToggle.on .rotateClick {
    transform: rotate(90deg);
}

.cardName {
    font-size: 11px;
    font-weight: 500;
    opacity: .7;
}

#iptalSide .form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

@keyframes ldio-29051lc6i6v {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


#list .stock {
    color: var(--success);
    padding-left: 15px;
}

.favorites #list .item {
    position: relative;
    transition: .3s;
}

#list .tukendi>div:first-child>a {
    position: relative;
}

#list .tukendi a {
    pointer-events: none;
    opacity: .6;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

#list .tukendi>div:first-child>a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primaryColor);
    opacity: .2;
    z-index: 15;
    border-radius: 5px;
}

#list .tukendi>.box>a:after {
    content: "TÜKENDİ !";
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 16;
    border-radius: 5px;
    font-weight: 800;
    color: black;
    font-size: 20px;
}

#list .tukendi>a {
    pointer-events: auto !important;
    position: absolute;
    width: 140px;
    text-align: center;
    top: calc(50% - 25px);
    z-index: 15;
    background-color: var(--primaryColor);
    opacity: 1;
    padding: 0px 10px;
    line-height: 30px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    left: calc(50% - 70px);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: .2s;
}

#list .tukendi>a:hover {
    background-color: var(--primaryColor);
}

.favorites #list .item.deleteLoad {
    transform: scale(.5);
    opacity: 0;
}

#list .tukendi .visual:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, .5);
}

@media screen and (max-width: 992px) {
    #order.favorites #list .buyNow a {
        width: 100%;
    }

    .favorites #list .item {
        padding: 2px;
    }

    #order.favorites #list .item .box {
        background-color: white !important;
        padding: 10px !important;
        border-radius: 10px;
        height: 100%;
    }

    #order {
        padding-bottom: 0px !important;
    }

    .ssslist .item .sssToggle {
        border-radius: 5px !important;
    }

    #orderAside a {
        font-size: 14px;
    }

    #list .stock {
        padding-left: 7px;
        font-size: 12px;
    }

    #list .tukendi>.box>a:after {
        font-size: 16px;
    }

    #list .tukendi>a {
        width: 120px;
        top: calc(40% - 25px);
        padding: 0px 5px;
        font-size: 12px;
        left: calc(50% - 60px);
    }
}


@media screen and (max-width: 992px) {
    .noItem {
        height: 75vh !important;
        zoom: 70%;
    }

    .discountContent {
        zoom: 90%;
    }

    #basket .basketEnd ul li span:last-child {
        margin-right: 30px;
    }
}

#order.customerServices {}

#order.customerServices .blankTicked {
    background-color: #ececf5;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    padding: 25px;
}

#order.customerServices .blankTicked .title {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--primaryColor);
}

#order.customerServices .title article {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--textColor);
}

#order.customerServices .blankTicked a {
    padding: 0px 15px;
    border-radius: var(--radius);
    display: block;
    background-color: var(--success);
    color: white;
    line-height: 40px;
    transition: .2s;
}

#order.customerServices .blankTicked a:hover {
    background-color: var(--primaryColor);
}

#order.customerServices .blankTicked a i {
    float: left;
    line-height: 39px;
    margin-right: 5px;

}

#order.customerServices ul.taleplist {
    margin-top: 35px;
}

#order.customerServices ul.taleplist>li {
    padding: 15px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    margin-bottom: 10px;
}

#order.customerServices ul.taleplist>li:nth-child(even) {
    background-color: #ececf5;
}

#order.customerServices ul.taleplist li>.row>div {
    display: flex;
    align-items: center;
}

#order.customerServices ul.taleplist li>.row div>div>div:first-child {
    color: var(--textColor);
    font-weight: 500;
    font-size: 13px;
    opacity: .7;
}

#order.customerServices ul.taleplist li>.row div>div>div:last-child {
    color: var(--textColor) !important;
    font-weight: 400 !important;
    font-size: 14px !important;
}

#order.customerServices ul.taleplist li>.row div:first-child>div>div:last-child {
    font-weight: 700 !important;
    color: var(--primaryColor) !important;
}

#order.customerServices ul.taleplist li>.row div:nth-child(2)>div>div:last-child {
    font-weight: 700 !important;
    color: var(--primaryColor) !important;
}

#order.customerServices ul.taleplist li>.row div:nth-child(3) {
    padding-left: 25px;
}

#order.customerServices ul.taleplist li>.row>div ul {
    display: flex;
}

#order.customerServices ul.taleplist li>.row>div ul li {
    width: 100%;
    margin-left: 5px;
}

#order.customerServices ul.taleplist li>.row>div ul li a i {
    display: block;
    padding: 7px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    color: var(--textColor);
    border-radius: 5px;
    transition: .2s;
}

#order.customerServices ul.taleplist li>.row>div ul li a i:hover {
    background-color: var(--primaryColor);
    color: white;
    opacity: 1;
}

#order.customerServices ul.taleplist li>.row div>div>div.answered {
    color: #ff6000 !important;
    opacity: 1 !important;
}

#order.customerServices ul.taleplist li>.row div>div>div.solved {
    color: var(--success) !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

#order.customerServices .taleplist .dropClick .toggle.active i:before {
    content: "\e95f";
}

#order .mesages {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 35px 15px;
    position: relative;
    margin-bottom: -25px;

}

#order .mesages:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/messagesPattern.webp);
    opacity: .15;
    z-index: 0;
}

#order .mesages ul {
    display: block !important;
    position: relative;
    z-index: 2;
}

#order .mesages .userMessage .name {
    text-align: right;
    font-weight: 700;
    color: var(--success);
}

#order .mesages .userMessage .name span {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: var(--textColor);
    opacity: .8;
}

#order .mesages .userMessage .messageBox {
    width: fit-content;
    max-width: 90% !important;
    padding: 15px 20px;
    margin-left: auto !important;
    margin-top: 15px;
    margin-bottom: 15px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    background-color: #f7fff2;
    color: #456630;
    border-radius: 7px;
    position: relative;
}

#order .mesages .userMessage .messageBox:before {
    font-family: 'default' !important;
    content: "\e995";
    position: absolute;
    right: 35px;
    top: -9px;
    font-size: 15px;
    line-height: 10px;
}

#order .mesages .editorMessage .messageBox {
    width: fit-content;
    max-width: 90% !important;
    padding: 15px 20px;
    margin-right: auto !important;
    margin-top: 15px;
    margin-bottom: 15px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    background-color: #fff1e9;
    color: #78411f;
    border-radius: 7px;
    position: relative;
}

#order .mesages .editorMessage .messageBox:before {
    font-family: 'default' !important;
    content: "\e995";
    position: absolute;
    left: 35px;
    top: -9px;
    font-size: 15px;
    line-height: 10px;
}

#order .mesages .editorMessage .name {
    text-align: left;
    font-weight: 700;
    color: #da5200;
}

#order .mesages .editorMessage .name span {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: var(--textColor);
    opacity: .8;
}

#login .userMessage,
#login .editorMessage {
    margin-top: 10px;
    margin-bottom: 10px;
}

#order .messageForm {
    width: 100%;
    margin-top: 40px;
}

#order .messageForm>div {
    min-width: 100%;
}

#order .messageForm textarea {
    width: 100%;
    margin-right: 15px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    transition: .2s;
    -webkit-box-shadow: 0 0 15px 5px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 0 15px 5px rgba(0, 0, 0, .05);
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 5%);
}

#order .messageForm textarea:focus {
    outline: none !important;
    -webkit-box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 15px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 13%);
}

#order .messageForm button {
    background-color: var(--success);
    border-radius: 10px;
    color: white;
    border: none;
    outline: none;
    padding: 0px 25px;
    transition: .2s;
    -webkit-box-shadow: 0 0 15px 5px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 0 15px 5px rgba(0, 0, 0, .05);
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 5%);
}

#order .messageForm button:hover {
    background-color: var(--primaryColor);
}

@media screen and (max-width: 992px) {
    #order.customerServices ul.taleplist li>.row div:nth-child(3) {
        padding-left: 11px;
    }

    #order.customerServices ul.taleplist li {
        position: relative;
    }

    #order.customerServices ul.taleplist li .action {
        position: absolute;
        right: 0px;
        top: 15px;
    }

    #order.customerServices ul.taleplist {
        margin-top: 15px;
    }
}

#addToTicket {}

#addToTicket input[type="text"],
#addToTicket textarea,
#addToTicket select {
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0px 15px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--textColor);
    border-radius: 5px;
    width: 100%;
    height: 40px;
}

#addToTicket textarea {
    height: 90px;
}

#addToTicket form>.row>div {
    margin-bottom: 10px;
}

#addToTicket .orderSelect {
    padding: 7px 15px;
    background-color: var(--primaryColor);
    border-radius: var(--radius);
    color: white;
    margin-left: auto;
    font-size: 13px;
    display: inline-block;
}

#addToTicket .orderSelect i {
    font-size: 9px;
    margin-left: 5px;
}

#addToTicket button {
    border-radius: var(--radius);
}

@media screen and (max-width:992px) {

    #order {
        padding: 15px 0px !important;
    }

    #order .orderFilter .head {
        margin-bottom: 15px;
        margin-top: 5px;
        line-height: 40px;
    }

    .mobileAside {
        transform: translateX(-100%);
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        z-index: 150;
        background-color: var(--primaryColor);
        width: 60%;
        padding-top: 25px;
        transition: .3s;
    }

    #order.accountOn .mobileAside {
        transform: translateX(0%);
    }

    #orderAside a.active {
        color: var(--primaryColor);
        background-color: whitesmoke;
    }

    #orderAside .head .data {
        color: White;
    }

    #orderAside a {
        color: whitesmoke;
        font-weight: 500;
    }

    #order .orderFilter ul {
        flex-wrap: wrap
    }

    #order .orderFilter {}

    #order .orderFilter li {
        margin-bottom: 5px;
        margin-right: 5px !important;
    }

    #order .orderFilter li:first-child {
        width: 100%;
        margin-bottom: 10px;
    }

    #order .orderFilter li:first-child input[type="text"] {
        width: 100%;
    }

    #order .orderFilter li a {
        zoom: 85%;
        border-radius: 5px !important;
    }

    #order .orderFilter ul li input {
        border-radius: 5px;
    }

    #order .orderFilter li a i {
        display: none !important;
    }

    #order .orderPane .box {
        padding: 5px 15px;
    }

    #order .orderList li .toggle .caret i {
        margin-right: 0px;
    }

    #order .orderList li .toggle .durum span {
        line-height: 11px;
        font-size: 14px;
    }

    #order .orderList li .toggle .title {
        line-height: 16px;
        font-size: 13px;
    }

    #order .orderList li .toggle .title>div>div:last-child i {
        display: none;
    }

    #order .orderList li .toggle .durum span {
        padding-left: 4px;
    }

    #order .durum.ok i:before {
        padding: 2px;
    }

    #order .orderList li .toggle .visual li:nth-child(n+2) {
        margin-left: -52px;
    }

    #order .orderFilter ul {
        padding-left: 0px;
    }

    #order .orderFilter .head {
        padding: 0px;
        text-align: right;
        padding-left: 41%;
    }

    #order .orderList li.on .toggle .visual {
        height: auto !important;
    }

    #order .orderList li.opening .visual ul {
        display: flex;
    }

    #order .orderList li.opening .toggle .visual ul {
        height: auto !important;
        padding: 10px 0px;
    }

    #order .orderList li.opening .toggle .mobileVisual {
        width: 100%;
        order: 2;
        height: auto;
        max-height: fit-content !important;
        padding-left: calc(var(--bs-gutter-x) / 2);
    }

    #order .on .content {
        height: 366px;
    }

    #order .orderList li .toggle .price>div>div:last-child {
        white-space: nowrap;
        font-size: 14px;
    }

    #order .orderList li .toggle .price {
        text-align: right;
        zoom: 85%;
    }

    #order .orderList li .toggle .title>div>div span:first-child {
        display: none;
    }

    #order .orderList li .toggle .title>div>div span:last-child {
        font-size: 14px;
        line-height: 17px;
    }

    #order .orderList .caret {
        position: absolute;
        left: 8px;
        top: 0;
        height: 80px;
        padding: 0px;
    }

    #order .caret i {
        border: none !important;
        background-color: transparent !important;
        color: var(--textColor) !important;
        padding: 0px !important;
    }

    #order .visualContent {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #order .durum {
        order: 3;
        padding-left: 71px;
        margin-top: 0px;
        margin-bottom: 7px;
    }

    #order .on .durum {
        order: 1;
        margin-top: 5px !important;
        padding-left: 10px;
    }

    #order .adress,
    #order .pay {
        padding: 15px;
    }

    #order .pay table {
        font-size: 14px;
    }

    #order .adress ul li .adresName {
        font-size: 14px;
    }

    #order .adress ul li .adresContent {
        font-size: 12px;
        line-height: 20px;
        font-weight: 400;
        opacity: .8;
    }

    #order .pay table tr .step {
        zoom: 108%;
    }

    #order .pay table tr .step span {
        font-size: 12px;
        font-weight: 800;
    }

    #order .pay ul li b {
        font-size: 18px;
    }

    #order .pay table tr .status {
        position: relative;
        width: calc(100% + 30px) !important;
        margin-left: -15px;
    }

    #order .orderList li {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    #order .adress ul li b {
        font-size: 16px !important;
    }

    #order .accountAsideToggle {
        position: absolute;
        zoom: 70%;
        padding: 8px 10px;
        border-radius: 12px;
        background-color: var(--primaryColor);
        color: white;
        z-index: 15;
    }

    #order .accountAsideToggle .lottie {
        height: 50px;
        margin-right: 10px;
    }

    #order .accountAsideToggle .flex {
        display: flex;
        align-items: center;
    }

    #orderAside .head {
        margin-bottom: 15px;
    }


    #order.adreslerim .adressList .box {
        padding: 25px;
    }
}

@media screen and (max-width:1440px) {
    .orderPane #list .box .visual img {
        width: 70%;
        margin: auto;
        display: table;
    }

    #order {
        padding-top: 25px !important;
    }
}

/* ===== Page --> Profile End ===== */
/* Custom fade-in and fade-out animations */
.modal.fade .modal-dialog {
    transform: translateY(-20px);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    border-bottom: none;
    text-align: center;
    font-weight: 600;
    flex-flow: column;
}

.modal-header h5 {
    text-align: center;
    font-weight: 700;
    width: 100%;
    color: var(--primaryColor);
    font-size: 24px;
}

.modal-header article {
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--textColor);
    opacity: .8;
}

.modal-footer {
    border-top: none;
}

.modal-content {
    padding: 35px;
    position: relative;
    border-radius: 15px;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.modal-content .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-content .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom fade-in and fade-out animations End */

/* ===== Page --> Blog ===== */
#blogPage {
    padding: 60px 0px;
    position: relative;
    z-index: 20;
}

#blogPage .head {
    margin-bottom: 0px;
}

#blogPage .head * {
    text-align: left;
}

#blogPage .head h2 {
    color: var(--primaryColor);
    font-size: 30px;
    font-weight: 700;
}

#blogPage .head article {
    color: var(--textColor);
    font-size: 15px;
    font-weight: 400;
}

#blogPage :not(.head) article ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

/* ===== Page --> Blog End ===== */
/* ========== Page:Contact ========== */
#contact {
    padding: 60px 0px;
    padding-bottom: 0px;
    position: relative;
    z-index: 15;
}

#contact .head {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
}

#contact .head h2 {
    color: var(--primaryColor);
    font-weight: 800;
    margin-bottom: 0px;
}

#contact .head article {
    color: var(--textColor);
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    opacity: .8;
    width: 60%;
    display: table;
    margin: auto;
    margin-top: 0px;
}

#contact .item {
    text-align: center;
    margin-top: 35px;
}

#contact .item:nth-child(3) {
    transition: .5s;
}

#contact .item:nth-child(4) {
    transition: .8s;
}

#contact .item:nth-child(5) {
    transition: 1.1s;
}

#contact .item i {
    font-size: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 25px;
    background-color: var(--primaryColor);
    color: white;
    border-radius: 100%;
    margin-bottom: 35px;
}

#contact .item .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: var(--textColor);
    opacity: .6;
    margin-bottom: 10px;
}

#contact .item .text {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--primaryColor);
}

#contact .content {
    margin-top: 65px;
    margin-bottom: 0px;
    background: rgb(233, 237, 240);
    background: linear-gradient(0deg, rgba(233, 237, 240, 0) 0%, rgba(233, 237, 240, 1) 100%);
    border-top-left-radius: 85px;
    border-top-right-radius: 85px;
}

#contact .content .box {
    padding: 35px;
    padding-top: 65px;
    background-color: white;
    border-radius: var(--radius);
    background-color: transparent;
}

#contact .content form {}

#contact .content form .inputBox {
    padding: 0px;
}

#contact iframe {
    border-radius: 30px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .3s;
}

#contact iframe:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

#contact .button {
    display: table;
    margin: auto;
    margin-top: 25px;
    border: none;
}

#contact .button:hover {
    background-color: var(--success);
    border-color: var(--success);
}

#contact .contactList {
    font-size: 16px;
    font-weight: 500;
}

#contact .contactList li {
    margin-bottom: 15px;
}

#contact .contactList li a {
    color: var(--textColor);
    display: flex;
    align-items: center;
    width: fit-content;
}

#contact .contactList li a i {
    margin-right: 10px;
    float: left;
    font-size: 25px;
    padding: 10px;
    border-radius: var(--radius);
    border: solid 1px;
    color: var(--primaryColor);
}

#contact .socials {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 35px;
}

#contact .socials li {
    margin-right: 5px;
}

#contact .socials li a {
    color: white;
    border-radius: var(--radius);
    border: solid 1px transparent;
    white-space: nowrap;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: .2s;
    background-color: var(--primaryColor);
}

#contact .socials li a i {
    font-size: 22px;
    padding: 15px;
}

#contact .socials li a span {
    line-height: 18px;
    display: flex;
    float: right;
    align-items: center;
}

#contact .socials li a:hover {
    color: white;
    border: solid 1px var(--secondaryColor);
    background-color: var(--secondaryColor);
}

#contact .socials li:first-child {
    width: 100%;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primaryColor);
}

#contact .inputBox input,
#contact .inputBox textarea {
    background-color: white;
}

#contact .inputBox label {
    border-radius: 30px;
    background-color: transparent;
}

@media screen and (max-width:992px) {
    #contact .button {
        padding: 0px 45px;
    }

    #contact .head {
        padding: 0px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    #contact .contactList {
        text-align: center;
        padding-top: 25px;
    }

    #contact .contactList i {
        display: none;
    }

    #contact .head article {
        font-size: 14px;
        line-height: 20px;
        padding: 0px 15px;
        width: 100%;
    }

    #contact .item {
        zoom: 73%;
    }

    #contact .content {
        margin-top: 35px;
        padding: 0px;
        padding-bottom: 15px;
    }

    #contact .content .box {
        background-color: transparent;
        box-shadow: none;
        padding: 15px;
    }

    #contact .content .box .input {
        background-color: transparent;
    }

    #contact .content form .inputBox {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #contact .socials {
        justify-content: center;
        margin-top: 15px;
    }

    #contact .socials li {
        margin-left: 0px;
        margin-right: 10px;
    }

    #contact .socials span {
        display: none !important;
    }

    #contact .socials a {
        background-color: var(--primaryColor) !important;
        color: White !important;
        border: none !important;
        aspect-ratio: 1/1;
        border-radius: 100% !important;
    }

    #contact .socials a i {
        margin: 0px !important;
    }

    #contact .contactList li a {
        display: inline-block;
    }

    #contact .item:nth-child(4) {
        display: none;
    }
}

/* ========== Page:Contact End ========== */
/* ========== Page:Corporate ========== */
#corporate {
    padding: 60px 0px;
    position: relative;
    z-index: 15;
}

#corporate .head {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

#corporate .head * {
    text-align: left;
}

#corporate .head h2 {
    color: var(--primaryColor);
    font-weight: 700;
    margin-bottom: 15px;
}

#corporate .head article {
    color: var(--textColor);
}

#corporate .corporateItems {
    display: flex;
    gap: 30px;
}

#corporate .corporateItems li {
    padding: 30px;
    background-color: #e9edef;
    border-radius: 10px;
}

#corporate .corporateItems li:nth-child(2) {
    transition-delay: .3s;
}

#corporate .corporateItems li:nth-child(3) {
    transition-delay: .6s;
}

#corporate .corporateItems i {
    font-size: 30px;
    color: var(--primaryColor);
}

#corporate .corporateItems .title {
    font-weight: 700;
    font-size: 16px;
    color: var(--primaryColor);
}

#corporate .corporateItems article {
    font-weight: 400;
    font-size: 15px;
    color: var(--textColor);
}

#corporate #gallery .head,
#corporate #gallery .head h2,
#corporate #gallery .head article {
    text-align: left !important;
}

#corporate #gallery .head {
    flex-wrap: wrap;
}

#corporate #gallery {
    padding-bottom: 0px;
}

@media screen and (max-width:992px) {
    #corporate .corporateItems {
        flex-flow: column;
        gap: 15px;
    }

    #corporate .head {
        margin-bottom: 15px;
    }
}

/* ========== Page:Corporate End ========== */
/* ===== Gallery ===== */
#gallery {
    padding: 65px 0px;
}

#gallery ul {
    display: flex;
    gap: 1px;
    overflow-x: auto;
}

#gallery ul img {
    height: 400px;
    border-radius: 5px;
    filter: grayscale(100%);
    transition: .3s;
}

#gallery ul img:hover {
    filter: grayscale(0%);
}

#gallery .container-fluid {
    padding: 0px;
    margin-top: 35px;
}

/* ===== Gallery  End ===== */
/* ===== Page --> Kümes ===== */
#kumes {
    position: relative;
    z-index: 20;
    padding: 45px 0px;
}

#kumes .head,
#kumes .head h2,
#kumes .head article {
    text-align: left;
}

#kumes .head {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

#kumes :not(.head) article ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-flow: column;
    gap: 15px;
}

#kumes .clearText {
    padding: 35px 0px;
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--textColor);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    margin-bottom: 35px;
}

#kumes .clearText b {
    color: var(--primaryColor);
    font-family: var(--titleFont);
    font-size: 20px;
}

#kumes .whyContent {
    padding: 55px 35px;
    background-color: var(--primaryColor);
    border-radius: var(--radius);
    color: whitesmoke;
    box-shadow: 0px 25px 15px -15px rgba(0, 0, 0, 0.2);
}

#kumes .buttonContent {
    margin-top: 45px !important;
}

#kumes {}

/* ===== Page --> Kümes End ===== */
/* ===== Page --> Certificates ===== */
#certificates {
    padding:65px 0px;
}
#certificates .head article {
    padding:0px 15%;
}
#certificates .gallery {
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr ;
    gap: 10px;
}
#certificates .gallery > *:last-child {
    grid-column: 1 / -1;
    max-width:50%;
}
/* ===== Page --> Certificates End ===== */



/* ===== Mobile Settins =====  */

@media screen and (max-width:992px) {
    #certificates {
        padding:35px 0px;
    }
    #certificates .head article {
        padding:0px 0%;
    }
    #certificates .gallery {
        grid-template-columns:1fr 1fr ;
        gap: 7px;
    }


    /**/


    body.filterOn.page #list {
        z-index: 70;
    }



    /**/


    #pageHead .videoContent video {
        transform: translateY(-18%) scale(1.3);
        opacity: .35;
    }


    /**/


    .cartSide>.row>.col {
        padding: 3px;
    }
    .cartSide {
        transition: .3s;
    }
    body.filterOn .cartSide {
        opacity: 0;
    }




    /**/


    .alignment {
        border-radius: 5px;
    }

    .alignment li:first-child {
        position: sticky;
        left: 0;
    }

    .filterToggle {
        padding: 8px !important;
        background-color: var(--primaryColor) !important;
        color: white !important;
        border-color: var(--primaryColor) !important;
    }

    .filterToggle i {
        color: white !important;
    }

    .page #list>div>.row>.head article {
        height: 33px !important;
    }

    .stickyOn #list>div>.row>.head article {
        height: 0px !important;
    }

    #list>div>.row>.head {
        padding-top: 10px;
        margin-bottom: 0px;
    }

    .stickyOn #list>div>.row>.head {
        padding-top: 10px;
    }

    #list>div>.row>.head .row,
    .page #list>div>.row>.head {
        height: auto;
    }

    .page #list .alignment {
        padding-bottom: 10px;
        overflow-y: auto;
    }

    .page #list {
        padding-top: 30px;
    }


    /**/


    #filter {
        overflow-y: auto;
        max-height: calc(100% - 20px);
    }

    .filterSide {
        position: fixed;
        top: 0;
        background-color: white;
        height: 100vh;
        width: 100%;
        left: -100%;
        padding: 0;
        padding-top: 15px;
        padding-bottom: 15px;
        overflow: hidden;
        transition: .3s;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 120;
    }

    #filter .buttonBox {
        padding-left: 10px;
        padding-right: 10px;
    }

    .filterSide .filterHead {
        padding: 10px 0px;
        margin-top: -15px;
        margin-bottom: -40px;
        position: relative;
        z-index: 15;
    }

    .filterSide .filterHead .close {
        margin-left: auto;
        margin-right: 15px;
    }

    .filterSide .filterHead .close {
        display: flex;
        aspect-ratio: 1 / 1;
        height: 30px;
        align-items: center;
        justify-content: center;
        background-color: var(--primaryColor);
        border-radius: var(--radius);
        transform: rotate(180deg);
        color: white;
    }


    body.filterOn {
        overflow-y: clip;
    }

    body.filterOn .filterSide {
        left: 0%
    }


    /**/


    #gallery ul img {
        height: 260px;
    }


    /**/


    .page #blog {
        padding-bottom: 0px;
        margin-bottom: -35px;
    }

    /**/


    #kumes .buttonContent {
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        position: sticky;
        z-index: 15;
        bottom: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #kumes .buttonContent .button {
        width: 100%;
        background-color: var(--success);
        line-height: 60px;
    }


    /**/


    .favorites .orderPane>.row>div:last-child>.row>.col .box {
        margin-top: 0px !important;
    }

    .favorites .orderPane>.row>div:last-child>.row>.col {
        padding: 3px;
    }


    /**/


    #order.user .formTable .formLine .flex {
        display: flex;
    }

    #order.user .formTable {
        margin-top: 5px;
        margin-bottom: 5px;
        height: auto;
    }

    #order.user .nav-link.active {
        background-color: var(--primaryColor);
        color: Whitesmoke;
    }

    #order.user .nav-link {
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    #order .nav-tabs {
        flex-wrap: nowrap;
        border-bottom: 0px;
        gap: 5px;
    }

    #order.user .tab-content {
        border: none !important;
        background-color: transparent !important;
        padding: 0px !important;
    }


    /**/


    #order .orderList li .toggle .durum .flex {
        justify-content: flex-start;
    }

    #order .orderDetail {
        padding-right: 10px;
    }

    #order .pay {
        margin-top: 10px;
    }

    #order .orderDetail ul li.name {
        line-height: 16px;
    }

    #order .orderDetail>.row>div>.row>div:first-child ul {
        align-items: flex-start;
        gap: 3px;
        flex-flow: column;
    }

    #order .orderList li .toggle .caret {
        display: none !important;
    }

    #order .orderList li.opening .toggle .visual li a {
        box-shadow: none;
        overflow: visible;
        height: 70px !important;
        max-width: initial !important;
    }

    #order .orderList li .toggle {
        padding-bottom: 0px;
    }

    #order .orderList li.on .toggle .visual {
        overflow-y: clip;
        overflow-x: auto;
        margin-left: -15px;
        padding-left: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-right: -15px;
        margin-top: 10px;
        width: 100%;
    }

    #order .orderList li.opening .visual ul li {
        margin-bottom: 0px;
    }

    #order .orderList li.opening .visual ul {
        margin-top: 0;
        gap: 7px;
    }

    #order .orderList li {
        padding: 0 !important;
    }

    #order .orderList li .toggle,
    #order .orderList li {
        border-radius: 5px;
    }


    /**/


    .orderCheck .button {
        margin-bottom: 25px;
    }

    form .inputBox span {
        pointer-events: none;
    }

    #order .basketFixed .stickyBox>.button {
        zoom: 100%;
    }

    #order .basketFixed .box {
        box-shadow: 0px -20px 35px 0px rgb(0 0 0 / 6%);
    }

    #order .basketFixed .stickyBox {
        background-color: White;
        padding-bottom: 25px;
    }

    #order .orderItems .tax {
        margin-top: 0px;
    }

    #order .orderItems .qtyUnit>div {
        display: flex;
        justify-content: space-between;
    }

    /**/


    #detail .bottom>div>.row>div:last-child ul .head {
        margin-bottom: 0px;
    }

    #detail .bottom .data .title {
        margin-top: 25px;
    }

    #detail .bottom>div>.row>div:last-child {
        border-left: none !important;
        padding-left: calc(var(--bs-gutter-x) / 2);
        padding-right: calc(var(--bs-gutter-x) / 2);
    }

    #detail .bottom>div>.row>div:first-child {
        padding-right: calc(var(--bs-gutter-x) / 2);
        padding-left: calc(var(--bs-gutter-x) / 2);
    }

    #detail .top .box .alert:before {
        left: 12px;
    }

    #detail .top .box .alert {
        padding: 0px 25px;
    }

    .qty input {
        max-width: 75px;
    }

    #detail .data .box ul.mobileSticky {
        gap: 10px;
    }

    #detail .data .box .whatsappSiparis {
        width: 100%;
        padding: 15px;
    }

    #detail .data .box .brand {
        margin-bottom: 25px;
    }

    #detail .badge {
        position: relative;
        left: 15px;
        top: -10px !important;
    }

    .sl-wrapper .sl-image .sl-caption {
        bottom: -60px !important;
    }

    #detail .visualContent .info {
        bottom: 70px;
    }

    /**/



    #pageHead {
        height: 24vh;
    }

    /**/


    #blog:before {
        top: -180px;
    }

    #blog .item a .visual img {
        border-bottom-left-radius: 90px;
    }

    #blog .item a article {
        font-size: 13px;
        height: auto;
    }

    #blog .item a .title {
        font-size: 14px;
        height: 50px;
    }

    #blog .item a {
        padding: 15px;
    }

    /**/


    #services>.container:last-child>.row>div:nth-child(1) .box .visual .lottie {
        padding: 0px;
    }

    #services .box {
        padding: 15px;
    }

    #services>.container:last-child>.row>div {
        padding: 0;
    }

    #services>.container:last-child>.row>div:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    #services>.container:last-child>.row>div:nth-last-child(1),
    #services>.container:last-child>.row>div:nth-last-child(2) {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    #services .box .visual:before {
        display: none;
    }

    #services .box .visual {
        background-color: transparent !important;
        width: 100%;
        height: auto;
    }

    #services>.container:last-child {
        margin-top: 0px;
    }

    #services .container-fluid {
        width: 100%;
        padding: 0;
    }

    #services .container-fluid img {
        border-radius: 0px;
    }

    #services {
        padding-top: 0px;
    }

    #services .head>.row>div:last-child {
        margin-top: 25px;
    }

    #services .head,
    #services .head *,
    #services .head h2 {
        text-align: center;
    }

    #services .head article {
        width: 100%;
    }

    #services .head a {
        margin-left: auto;
        margin-right: auto;
    }

    /**/

    #tabcase {
        padding-bottom: 35px;
    }

    #tabcase .tab-content>div>.row>.col {
        padding: 3px;
    }

    .nav-pills .nav-link {
        white-space: nowrap;
    }

    #tabcase ul.nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        gap: 15px;
    }

    /**/


    #faq .head span,
    #faq .head h2,
    #faq .head article {
        text-align: center;
    }

    #faq .head a {
        margin-right: auto;
        margin-left: auto;
    }

    /**/
    #hook .head .button {
        margin-top: 50%;
    }

    #hook .head article {
        padding: 0px 15px;
    }


    /**/


    #showcase .head .button {
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
    }

    #showcase .head>.row>div h2 {
        text-align: center;
    }

    #showcase .head>.row>div article {
        text-align: center;
        width: 100%;
    }

    #showcase .head>.row>div {
        flex-flow: column;
        justify-content: center;
    }

    #showcase>div .row>div:nth-child(2) {
        padding-left: 15px;
        padding-right: 15px;
    }

    #showcase>div .row>div:nth-child(2)>.row>.col {
        padding: 3px;
    }

    /**/


    #categories .owl-item article {
        font-size: 13px;
    }

    #categories {
        margin-top: -90px;
    }

    #categories>div {
        width: 100%;
        padding: 0;
    }

    #categories .owl-item {
        opacity: 1 !important;
    }

    /**/
    #headline {
        border-bottom-left-radius: 0px;
    }

    #headline.viewing {
        box-shadow: 0px 10px 0px 5px rgba(0, 0, 0, 0.1);
    }

    #headline video {
        transform: scale(3.5);
    }

    #headline .caption article {
        display: none;
    }

    #headline .caption h1 {
        font-size: 18px !important;
        width: 100%;
        text-align: center;
    }

    #headline .caption h2 {
        font-size: 30px !important;
        line-height: 40px;
        margin-top: 35px;
        width: 100%;
        text-align: center;
    }

    #headline .caption {
        padding-top: 25%;
    }

    #headline .videoContent {
        height: 65vh;
    }

    #headline .caption h1:before {
        left: 20%;
        top: -15px;
        width: 60%;
        height: calc(100% + 30px);
    }

    #headline .caption a.button {
        display: none;
    }


    /**/

    .menuToggle {
        position: fixed;
        left: 0;
        top: 32px;
        height: 40px;
        z-index: 20;
        aspect-ratio: 1/1;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        background-color: #b50000ab;
        color: whitesmoke;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

    header.sticky .menuToggle {
        top: 71px;
        height: 42px;
        background-color: transparent;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .searchContent button {
        right: 21px;
    }

    .searchContent {
        padding-left: 15px;
        padding-right: 15px;
    }

    header.sticky {
        top: -70px;
    }

    header.sticky .top {
        padding-bottom: 0px;
    }

    header .nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 50%;
        height: 100vh;
        z-index: 50;
        background-color: var(--primaryColor);
        transform: translateX(-100%);
        transition: .3s;
        pointer-events: none;
    }

    header.menuOn .nav {
        transform: translateX(0%);
        pointer-events: auto;
    }

    header.sticky .nav {
        top: 70px;
    }

    header .nav nav>ul {
        flex-flow: column;
        gap: 10px;
    }

    header .nav nav>ul>li>a {
        font-size: 15px !important;
        font-weight: 500;
    }

    header .nav nav>ul>li>a.toggle:before {
        bottom: -14px;
        left: 22px;
        color: rgba(0, 0, 0, 0.2);
    }

    header .nav nav>ul>li>.sub {
        position: relative;
        top: 10px;
        padding-top: 0 !important;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    header .nav nav>ul>li>.sub .sub-content {
        background-color: transparent;
    }

    header .nav nav>ul>li>.sub .sub-content ul li a {
        font-size: 14px;
    }

    header .menuHead {
        padding: 10px 0px;
    }

    header .menuHead .close {
        display: flex;
        aspect-ratio: 1/1;
        height: 30px;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: var(--radius);
        transform: rotate(180deg);

    }

    header .top .userButton {
        margin-right: auto;
    }




}


/* ===== Mobile Settins End =====  */













































@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0)
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0)
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0)
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0)
    }
}




.pulse {
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(11, 57, 84, .4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(11, 57, 84, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(11, 57, 84, 0)
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(11, 57, 84, .4);
        box-shadow: 0 0 0 0 rgba(11, 57, 84, .4)
    }

    70% {
        -moz-box-shadow: 0 0 0 15px rgba(11, 57, 84, 0);
        box-shadow: 0 0 0 15px rgba(11, 57, 84, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(11, 57, 84, 0);
        box-shadow: 0 0 0 0 rgba(11, 57, 84, 0)
    }
}


@-webkit-keyframes pulseDanger {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(181, 0, 0, .4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(181, 0, 0, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(181, 0, 0, 0)
    }
}

@keyframes pulseDanger {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(181, 0, 0, 1);
        box-shadow: 0 0 0 0 rgba(181, 0, 0, 1)
    }

    70% {
        -moz-box-shadow: 0 0 0 15px rgba(181, 0, 0, 0);
        box-shadow: 0 0 0 15px rgba(181, 0, 0, 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(181, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(181, 0, 0, 0)
    }
}


@keyframes animatedBackground {
    from {
        background-position: 0 0;
    }

    /*use negative width if you want it to flow right to left else and positive for left to right*/
    to {
        background-position: -10000px 0;
    }
}



.sliding {
    opacity: 0;
    transition: 1.5s;
    position: relative;
}

.sliding.up {
    bottom: -150px;
}

.sliding.down {
    top: -150px;
}

.sliding.right {
    left: -50%;
}

.sliding.left {
    right: -50%;
}

.viewing .sliding.right {
    left: 0 !important;
}

.viewing .sliding.left {
    right: 0 !important;
}

.viewing .sliding {
    opacity: 1;
}

.viewing .sliding.up {
    bottom: 0px;
}

.viewing .sliding.down {
    top: 0px;
}





/* ========== List ========== */
/*
#list {
    padding: 45px 0px;
}

#list .head {
    text-align: center;
    font-family: var(--titleFont);
    color: black;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
}

#list .info .name {
    color: var(--textColor);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}

#list .visual {
    margin-bottom: 10px;
    background-color: #ececf5;
    position: relative;
}

#list .visual .badge {
    position: absolute;
    right: 5px;
    top: 5px;
}

#list .visual .badge li {
    padding: 0px 10px;
    line-height: 26px;
    border-radius: 5px;
}

#list .visual .badge ul li.discount {
    background-color: var(--success);
    font-size: 13px;
    font-weight: 300;
}

#list .visual .badge ul li.freeCargo {
    background-color: var(--asistHover);
    font-size: 13px;
    font-weight: 300;
}

#list .price {
    color: black;
    font-weight: 600;
    font-size: 16px;
}

#list .buyNow a {
    background-color: var(--primaryColor);
    color: white;
    border-radius: 5px;
    padding: 0px 15px;
    line-height: 30px;
    width: initial;
    font-size: 14px;
    transition: .2s;
}

#list .buyNow a:hover {
    background-color: var(--success);
}

#list .item {
    margin-bottom: 30px;
}

#list .old-price {
    text-decoration: line-through;
    color: var(--textColor);
    opacity: .5;
    line-height: 12px;
    font-size: 14px;
}

.item .like {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 16px;
    color: var(--textColor);
    transition: .2s;
    cursor: pointer;
    z-index: 5;
}

.item .go {
    position: absolute;
    right: 10px;
    top: 36px;
    font-size: 16px;
    color: var(--textColor);
    opacity: 0;
    transition: .2s;
    cursor: pointer;
}

.item:hover .go {
    opacity: 1;
}

.item .like.liked {
    opacity: 1;
}

.item:hover .like {
    opacity: 1 !important;
}

.item .liked i:before {
    font-family: 'default' !important;
    content: "\eac6";
    color: red;
    transition: .2s;
}
*/
/* ========== List End ========== */