:root {
    --redColor: #d22641;
    --darkColor: #0a1416;
    --yellowColor: #fecb00;
    --yellowColorHover: #dfb200;
    --grayColor: #f5f7f9;
    --grayLight: #848484;
    --grayPlusColor: #dae2e9;
    --blueColor: #246ce4;
    --blueDarkColor: #183c98;
    --greenColor: #39d067;
}

img {
    max-width: 100%;
    height: auto;
}

.bg-success {
    background-color: var(--greenColor) !important;
}

.bg-primary {
    background-color: var(--blueColor) !important;
}

.bg-warning {
    background-color: var(--yellowColor) !important;
}

.bg-danger {
    background-color: var(--redColor) !important;
}

.text-red {
    color: var(--redColor);
}

.text-green {
    color: var(--greenColor);
}

.text-blue {
    color: var(--blueColor);
}

.text-yellow {
    color: var(--yellowColor);
}

.text-big {
    font-size: 17px;
}

body, html {
    font-family: 'Poppins', sans-serif;
    color: var(--darkColor);
    font-size: 15px;
    -webkit-font-smoothing: subpixel-antialiased;
    font-smoothing: antialiased;
    font-smooth: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-smoothing: subpixel-antialiased;
    font-smooth: subpixel-antialiased;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

div.is-invalid {
    display: block;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: var(--redColor);
}

a, a:visited, a:active, a:link, a:focus {
    transition: all 0.5s;
    text-decoration: none;
    cursor: pointer;
    color: var(--darkColor);
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: var(--redColor);
}

@media (min-width: 1330px) {
    .container {
        max-width: 1330px;
    }
}

.mr-0 {
    margin-right: 0 !important;
}

.btn-block {
    display: block;
    width: 100%;
}

/*HEADER*/

header {
    width: 100%;
    position: relative;
    background-color: #ffffff;
    transition: all .5s;
}

header .header-top {
    position: relative;
    padding: 30px 0;
    background-color: #F6F7F9;
}

header .header-top .header-logo {
    float: left;
    height: 40px;
    margin-right: 50px;
}

header .header-top .header-logo .logo-light {
    display: none;
}

header .header-top .header-logo .logo-dark {
    display: block;
}

header .header-top .header-logo img {
    width: auto;
    height: 40px;
}

header .header-top .header-search {
    float: left;
    margin-right: 20px;
}

header .search-top-box .header-search-input {
    height: 40px;
    font-size: 14px;
    position: relative;
    width: 400px;
}

header .search-top-box .header-search-input input {
    width: 100%;
    border: 2px solid var(--darkColor);
    height: 40px;
    color: var(--darkColor);
    background-color: transparent;
    border-radius: 20px;
    padding: 0 0 0 15px;
    outline: none !important;
    box-shadow: none !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.5s;
}

header .search-top-box .header-search-input button {
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    background-color: var(--redColor);
    box-shadow: none !important;
    color: #fff;
    outline: none !important;
    border: 0;
    border-radius: 50%;
    font-size: 18px;
    top: 5px;
    right: 5px;
    transition: all 0.5s;
}

header .search-top-box .header-search-input input:focus {
    border-color: var(--redColor);
}

header .search-top-box .header-search-input button:hover {
    background-color: var(--darkColor);
}

header .header-top .header-phone {
    float: left;
    margin-right: 30px;
}

header .header-top .header-phone .header-phone-icon {
    font-size: 34px;
    line-height: 34px;
    float: left;
    margin-right: 5px;
    margin-top: 3px;
}

header .header-top .header-phone .header-phone-desc {
    font-size: 13px;
    float: left;
    line-height: 1.3;
    padding-top: 4px;
}

header .header-top .header-phone .header-phone-desc strong {
    font-size: 16px;
    display: block;
    font-weight: bold;
    white-space: nowrap;
}

header .header-top .header-tools {
    float: right;
}

.header-profile {
    padding-right: 25px;
    position: relative;
    float: left;
}

.header-profile::after {
    position: absolute;
    right: 0;
    top: 5px;
    width: 1px;
    height: 30px;
    background-color: var(--darkColor);
    opacity: 0.3;
    display: block;
    content: ' ';
}

.user-profile .dropdown-toggle {
    height: 40px;
    font-size: 18px;
    border-radius: 20px;
    border: 1px solid #bfbfbf;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 6px 0 15px;
    display: flex;
    transition: all 0.5s;
}

.user-profile .dropdown-toggle .hp-user {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin-right: 5px;
    transition: all 0.5s;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-profile .dropdown-toggle .hp-user i {
    font-size: 24px;
    line-height: 38px;
}

.user-profile .dropdown-toggle .hp-user-img {
    font-size: 30px;
    height: 40px;
    line-height: 41px;
    display: inline-block;
    transition: all 0.5s;
}

.dropdown-divider {
    height: 0;
    margin: 10px 0;
    overflow: hidden;
    border-top: 1px dotted var(--grayColor);
    opacity: 0.15;
}

.user-profile:hover .dropdown-toggle .hp-user-img {
    color: var(--redColor);
}

.user-profile .dropdown-toggle::after {
    font-family: 'icomoon', sans-serif;
    display: none;
    margin-left: .255em;
    vertical-align: .255em;
    content: "\ea61";
    border: 0;
    font-size: 22px;
    width: 22px;
    height: 40px;
    position: absolute;
    right: 5px;
    top: 0;
    line-height: 41px;
}

.header-menu {
    float: left;
    padding-left: 10px;
}

.header-menu ul, .header-menu > ul > li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu > ul > li {
    float: left;
    padding: 0 5px;
}

.header-menu > ul > li > a {
    position: relative;
    display: block;
    height: 40px;
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    width: 40px;
    border-radius: 20px;
    transition: all 0.3s;
}

.header-menu > ul > li > a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

.header-menu > ul > li.header-main-menu {
    padding-left: 15px;
}

.commercial-budget {
    position: absolute;
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: var(--redColor);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 20px;
    right: -3px;
    bottom: 0;
    border-radius: 10px;
    font-family: "Rubik", sans-serif;
}

header .header-navigation {
    position: relative;
    background-color: #fff;
    width: 100%;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

header.header-main:not(.header-fixed) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

/*HEADER*/

/*MEGAMENU*/
.wsmenu {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.wsmenu > .wsmenu-list > li > .navtext {
    font-weight: 500;
    color: var(--darkColor);
    padding: 0 13px;
    position: relative;
    line-height: 50px;
    border-right: 1px solid #e7e7e7;
}

.wsmenu > .wsmenu-list > li > .navtext:hover {
    color: var(--redColor);
}

.wsmenu > .wsmenu-list > li:not([style*="display: none"]):nth-last-child(1) > .navtext {
    border-right: 0;
}

.wsmenu > .wsmenu-list > li > .wsshoptabing > .wsshopwp {
    height: auto !important;
    background-color: #fff;
}

.wsmenu > .wsmenu-list > li > ul.sub-menu {
    background-color: transparent;
    border: none !important;
}


.wsmenu > .wsmenu-list > li > .wsshoptabing > .wsshopwp > .wstabitem > li > a, .wsmenu > .wsmenu-list > li > ul.sub-menu > li > a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    color: var(--darkColor);
    border-bottom: solid 1px #e7e7e7;
    width: 23%;
    float: left;
    position: relative;
    border-left: 0;
    border-right: 3px solid transparent;
    background-color: #fff;
    font-weight: 500;
    transition: none;
}


.wsmenu > .wsmenu-list > li > ul.sub-menu > li > a {
    width: 100%;
    background-color: var(--grayColor);
}

@media (min-width: 991px) {
    .wsmenu > .wsmenu-list > li > ul.sub-menu {
        top: 50px;
        padding-top: 10px;
        min-width: 300px;
    }

    .wsmenu > .wsmenu-list > li > ul.sub-menu > li:nth-child(1) > a {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-top: 1px solid var(--grayPlusColor);
    }

    .wsmenu > .wsmenu-list > li > ul.sub-menu > li:nth-last-child(1) > a {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-bottom: 1px solid var(--grayPlusColor);
    }

    .wsmenu > .wsmenu-list > li > ul.sub-menu > li > a {
        width: calc(100% - 2px);
        border-left: 1px solid var(--grayPlusColor);
        border-right: 1px solid var(--grayPlusColor);
        background-color: #fff;
    }
}

@media (max-width: 991px) {
    .wsmenu > .wsmenu-list > li:hover > a {
        background-color: var(--grayPlusColor);
    }
}


.wsmenu > .wsmenu-list > li > .wsshoptabing > .wsshopwp > .wstabitem > li:hover > a, .wsmenu > .wsmenu-list > li > ul.sub-menu > li:hover > a {
    border-right: 3px solid var(--redColor);
    color: var(--redColor);
    text-decoration: none;
}

.wsmenu > .wsmenu-list > li > .wsshoptabing > .wsshopwp > .wstabitem {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.wsmenu > .wsmenu-list > li > .wsshoptabing.wtsdepartmentmenu {
    background: transparent;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    border-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 4px;
}

.wsmenu > .wsmenu-list > li > .wsshoptabing > .wsshopwp > .wstabitem > li > .wstitemright {
    min-height: 100% !important;
    padding: 50px;
}

.wstcontainer {
    position: relative;
}

.wstcontainer .wsthead {
    padding: 0 0 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
    line-height: 24px;
}

.wstcontainer .wsthead h2 {
    float: left;
    font-size: 14px;
    font-weight: bold;
}

.wstcontainer .wsthead .he-btn {
    display: block;
    font-size: 13px;
    font-weight: bold;
    padding: 0 30px 0 0;
    height: 30px;
    line-height: 30px;
    float: right;
    position: relative;
    transition: all 0.5s;
}

.wstcontainer .wsthead .he-btn i {
    font-size: 20px;
    position: absolute;
    right: 5px;
    top: 4px;
    transition: all 0.5s;
}

.wstcontainer .wsthead .he-btn:hover i {
    right: 0;
    color: var(--redColor);
}

.wstproduct-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    -moz-box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    background-color: #fff;
}

.wstproduct-item .wstproduct-img {
    position: relative;
    overflow: hidden;
}

.wstproduct-item .wstproduct-img img {
    width: 100%;
    height: auto;
}

.wstproduct-item .wstproduct-body {
    padding: 30px 20px;
}

.wstproduct-item .wstproduct-body h2 {
    font-size: 16px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.wstproduct-container {
    position: relative;
}

.wstproduct-container .swiper-pagination {
    position: absolute;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: -46px;
}

header .header-wrapper {
    display: block;
}

/*MEGAMENU*/

/*HEADER MAIN*/


@media (min-width: 992px) {
    header.header-fixed {
        position: fixed;
        z-index: 999;
        top: -80px;
        transition: all 0.5s;
    }

    header.header-fixed.show {
        top: 0;
    }

    header.header-fixed .header-navigation {
        border: 0;
        padding: 10px 0;
        -webkit-box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.3);
        box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.3);
    }

    header.header-fixed .wsmenu > .wsmenu-list > li:nth-child(n+2) {
        display: none;
    }

    header.header-fixed .header-top .header-logo {
        display: none;
    }

    header.header-fixed .header-wrapper {
        position: absolute;
        top: 15px;
        z-index: 2;
        width: 672px;
        margin-left: 258px;
    }

    header.header-fixed .header-top {
        padding: 0;
    }


    header.header-main:not(.header-fixed) {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5;
        background-color: transparent;
    }

    header.header-main:not(.header-fixed) .header-top {
        position: relative;
        padding: 30px 0;
        background-color: transparent;
        color: #fff;
    }

    header.header-main:not(.header-fixed) .header-top .header-logo .logo-light {
        display: block;
    }

    header.header-main:not(.header-fixed) .header-top .header-logo .logo-dark {
        display: none;
    }


    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input input {
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: #fff;
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input input::-webkit-input-placeholder { /* Edge */
        color: rgba(255, 255, 255, 0.6);
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input input:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: rgba(255, 255, 255, 0.6);
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input button {
        top: 5px;
        right: 5px;
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input input:focus {
        border-color: var(--redColor);
        background-color: #fff;
        color: var(--darkColor);
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input button:hover {
        background-color: var(--darkColor);
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input input:focus::-webkit-input-placeholder { /* Edge */
        color: rgba(0, 0, 0, 0.6);
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input input:focus:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: rgba(0, 0, 0, 0.6);
    }

    header.header-main:not(.header-fixed) .header-top .header-search .header-search-input input:focus::placeholder {
        color: rgba(0, 0, 0, 0.6);
    }

    header.header-main:not(.header-fixed) .user-profile .dropdown-toggle {
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: #fff;
    }

    header.header-main:not(.header-fixed) .header-profile::after {
        background-color: #fff;
    }

    header.header-main:not(.header-fixed) .header-menu li > a {
        color: #fff;
    }

    header.header-main:not(.header-fixed) .header-menu li > a:hover {
        background-color: rgba(0, 0, 0, 0.3);
        font-size: 24px;
    }

    header.header-main:not(.header-fixed) .header-navigation {
        background-color: transparent;
        border: 0;
    }

    header.header-main:not(.header-fixed) .wsmenu {
        background-color: #fff;
        border-radius: 15px 10px 10px 15px;
    }
}

@media (min-width: 1199px) {
    header.header-fixed .header-wrapper {
        width: 852px;
        margin-left: 258px;
    }
}

@media (min-width: 1330px) {
    header.header-fixed .header-wrapper {
        width: 994px;
        margin-left: 276px;
    }
}

@media (min-width: 1360px) {
    header.header-fixed .header-wrapper {
        width: 1024px;
        margin-left: 276px;
    }
}


.dropdown-menu.user-dropdown-menu-login {
    min-width: 250px;
    padding: 15px;
    border-radius: 10px;
    margin-top: 5px !important;
}

.dropdown-menu.user-dropdown-menu-login > a:nth-child(1) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-menu.user-dropdown-menu-login > a:nth-last-child(1) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.dropdown-menu.user-dropdown-menu-login::after {
    content: '';
    position: absolute;
    top: -9px;
    left: auto;
    margin-left: auto;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 9px solid #fff
}

.dropdown-menu.user-dropdown-menu-login::before {
    content: '';
    position: absolute;
    top: -10px;
    left: auto;
    margin-left: auto;
    right: 9px;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 10px solid var(--grayPlusColor)
}

.dropdown-menu.user-dropdown-menu-login .dropdown-item {
    padding: 12px 15px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
}

@media (min-width: 991px) {
    .dropdown-menu.user-dropdown-menu-login {
        margin-top: 10px !important;
        left: 50% !important;
        margin-left: -125px !important;
    }

    .dropdown-menu.user-dropdown-menu-login::after {
        left: 50%;
        margin-left: -10px;
        right: auto !important;

    }

    .dropdown-menu.user-dropdown-menu-login::before {
        left: 50%;
        margin-left: -11px;
        right: auto !important;
    }
}

.dropdown.user-profile.show::before {
    content: '';
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.dropdown.user-profile.show .dropdown-toggle.btn-user-dropdown {
    position: relative;
    z-index: 10;
    border-color: #fff !important;
    background-color: #fff !important;
    color: var(--darkColor) !important;
}

/*HEADER MAIN*/

/*SWIPER*/
.swiper-pagination-bullet {
    background-color: #b2b2b2;
    margin-right: 5px;
    outline: none !important;
    box-shadow: none !important;
    opacity: .8;
    transition: all 0.5s;
    border-radius: 4px;
}

.swiper-pagination-bullet-active {
    background-color: var(--redColor);
    opacity: 1;
    width: 60px;
    border-radius: 4px;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    padding: 5px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--redColor);
    outline: none !important;
    box-shadow: none !important;
    opacity: .6;
    transition: all 0.5s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: var(--darkColor);
    opacity: 1;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 36px;
}

/*SWIPER*/

/*MAINSLIDE*/
.main-slider {
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 180px 0 50px 0;
    color: #fff;
}

.main-slider-cover-color {
    background-color: var(--darkColor);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-slider-content {
    position: relative;
    z-index: 2;
}

/*MAINSLIDE*/

/*HOMESLIDER*/
.home-slider {
    position: relative;
    overflow: hidden;
}

.home-slider-content {
    position: relative;
}

.home-slider-content .home-slider-item {
    position: relative;
    border-radius: 10px;
    background-color: #fff;
}

.home-slider-content .home-slider-item .sld-content {
    float: left;
    width: 33%;
    padding: 50px;
    color: var(--darkColor);
}

.home-slider-content .home-slider-item .sld-img {
    float: right;
    width: 67%;
    padding: 15px 15px 15px 0;
}

.home-slider-content .home-slider-item .sld-img img.slide-pht {
    width: 100%;
    height: auto;
}

.home-slider-content .home-slider-item .sld-camp {
    height: 50px;
}

.home-slider-content .home-slider-item .sld-label {
    position: absolute;
    top: 30px;
    left: 0;
    background-color: var(--redColor);
    padding: 10px 50px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.home-slider-content .home-slider-item .sld-content h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.home-slider-content .home-slider-item .sld-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.home-slider-thumbs {
    position: relative;
    padding: 15px 0 0;
    display: flex;
}

.home-slider-thumbs .thumbs-arrow {
    width: 120px;
    height: 60px;
    float: left;
}

.home-slider-thumbs .thumbs-content {
    width: calc(100% - 240px);
    height: 60px;
    float: left;
}

.home-slider-thumbs .thumbs-arrow .thumbs-arrow-btn {
    position: relative;
    display: block;
    cursor: pointer;
    color: #fff;
    border-radius: 20px;
    width: 60px;
    height: 34px;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
    opacity: 0.5;
    margin: 13px auto 0;
    border: 1px solid #fff;
}

.home-slider-thumbs .thumbs-arrow .thumbs-arrow-btn:hover {
    background-color: #fff;
    opacity: 1;
    color: var(--redColor);
}

.home-slider-thumbs .thumbs-content .thumbs-item {
    cursor: pointer;
    position: relative;
}

.home-slider-thumbs .thumbs-content .thumbs-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.home-slider-thumbs .thumbs-content .swiper-slide-thumb-active .thumbs-item:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 3px solid #fff;
    display: block;
    content: '';
    z-index: 1;
    border-radius: 6px;
}

.home-slider .swiper-pagination {
    position: relative;
    margin-top: 10px;
    display: none !important;
}

.btn-primary-ord {
    background-color: var(--yellowColor);
    color: var(--darkColor);
}

/*HOMESLIDER*/

/*HOME MAIN CATEGORY*/
.main-category {
    position: relative;
    background-color: var(--grayColor);
    padding: 50px 0;
}

.main-category-item {
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    display: block;
    overflow: hidden;
}

.main-category-item .main-category-content {
    width: calc(100% - 140px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    padding: 30px 30px;
}

.main-category-item .main-category-content h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-category-item .main-category-img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.main-category-item .main-category-img img {
    width: 100%;
    height: auto;
    transition: all 0.5s;
    max-width: 140px;
    float: right;
}

.main-category-item:hover .main-category-img img {
    transform: scale(1.2);
}

.swiper-pagination {
    position: relative;
    margin-top: 15px;
}


.category-list {
    position: relative;
}
.category-list .category-item {
    width: 100%;
    max-width: 100%;
    background-color:#fff;
    border-radius: 10px;
    overflow: hidden;
    border:1px solid var(--grayColor);
    cursor:pointer;
    transition: all 0.5s;
}

.category-list .category-item:hover {
    color: var(--redColor);
}

.category-list .category-item .category-img {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.category-list .category-item .category-img img {
    width: 100%;
    height: auto;
    transition: all 0.5s;
    max-width: 120px;
}

.category-list .category-item:hover .category-img img {
    transform: scale(1.2);
}

.category-list .category-item .category-title {
    padding: 15px 15px;
}

.category-list .category-item .category-title h2, .category-list .category-item .category-title h3, .category-list .category-item .category-title p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3rem;
}

.category-midi-container {
    display: none;
}

.category-midi-list {
    /*background-color: #fff;*/
    border-radius: 10px;
    width: 100%;
    position: relative;
    min-height: 250px;
    padding: 10px;
}

.category-midi-wrapper .sk-loading {
    background-color: transparent !important;
}

.category-midi-list .category-midi-head {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
}

.category-midi-list .category-midi-head h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin:0;
}

.category-midi-close {
    width: 34px;
    height: 34px;
    text-align: center;
    font-size: 20px;
    background-color: transparent;
    border:none !important;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.5s;
    border-radius: 6px;
    line-height: 36px;
}
.category-midi-close:hover {
    background-color: var(--grayColor);
}


.category-midi-list .category-midi-body {
    padding:30px 0;
}

@media (max-width: 991px) {
    .category-midi-list .category-midi-head {
        padding: 20px 25px;
    }
    .category-midi-list .category-midi-head h3 {
        font-size: 1.2rem;
    }
    .category-list .category-item .category-title h2, .category-list .category-item .category-title h3, .category-list .category-item .category-title p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .category-midi-list .category-midi-head {
        padding: 15px;
    }
    .category-midi-list .category-midi-head h3 {
        font-size: 1.1rem;
    }
    .category-list .category-item {
        width: 100%;
        max-width: 100%;
        background-color:#fff;
        border-radius: 10px;
        overflow: hidden;
        border:1px solid var(--grayColor);
        display: flex;
        align-items: center;
        align-content: start;
    }

    .category-list .category-item .category-img {
        width: 70px;
        text-align: center;
        overflow: hidden;
        padding: 10px 5px 10px 10px;
    }
    .category-list .category-item .category-title {
        padding: 10px 10px;
        width: 100%;
    }
    .category-list .category-item .category-title h2, .category-list .category-item .category-title h3, .category-list .category-item .category-title p {
        font-size: 1rem;
        height: auto;
        text-align: left;
    }
}

/*HOME MAIN CATEGORY*/

/*PRODUCT*/
.product-brand {
    color: #727272;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-brand a {
    color: var(--blueColor) !important;
}

.product-brand a:hover {
    text-decoration: underline;
    color: var(--redColor) !important;
}

.product-title {
    position: relative;
    margin-bottom: 20px;
}

.product-title h1, .product-title h2, .product-title h3 {
    font-size: 36px;
    font-weight: bold;
}

.product-pg {
    position: relative;
    margin-bottom: 20px;
}

.product-price {
    position: relative;
}

.product-price .product-discount {
    height: 54px;
    background-color: var(--redColor);
    color: #fff;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    line-height: 1;
    display: block;
    float: left;
}

.product-price .product-discount strong {
    display: block;
    line-height: 1;
    font-size: 24px;
    font-weight: bold;
}

.product-price .product-price-int {
    display: inline-block;
    padding: 3px 10px 0;
    float: left;
}

.product-price .product-price-int .pricediscount {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #727272;
    line-height: 1;
    margin-bottom: 3px;
    text-decoration: line-through;
}

.price {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--redColor);
    line-height: 30px;
}

.price > text {
    font-size: 18px;
    font-weight: 500;
}

.product-rating {
    position: relative;
}

.product-rating .rating-info {
    color: #a6a6a6;
    display: block;
    text-align: right;
    font-size: 13px;
    line-height: 10px;
}

.product-rating .rating-box {
    text-align: right;
    display: flex;
    float: right;
    vertical-align: center;
}

.product-rating .rating-box span {
    font-weight: bold;
    font-size: 16px;
    padding-top: 2px;
    display: block;
    transition: all 0.5s;
}

.product-rating .rating-box .rating {
    margin-left: 10px;
    font-size: 19px;
    color: var(--yellowColor) !important;
}

.product-rating:hover .rating-box span {
    color: var(--yellowColor) !important;
}


.product-info-min {
    font-size: 15px;
    position: relative;
    margin-bottom: 20px;
}

.product-info-min ul {
    padding: 0 0 0 20px;
}

.product-info-min li {
    list-style: revert;
    margin: 0;
}

.product-info-min li a {
    text-decoration: underline;
    font-weight: 500;
}

.quantity-input {
    border-radius: 6px;
    border: 1px solid var(--grayPlusColor);
    height: 50px;
    display: inline-flex;
    padding: 5px;
    text-align: center;
    position: relative;
}

.quantity-input .qnt-btn {
    width: 30px;
    height: 38px;
    line-height: 38px;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 6px;
    background-color: var(--grayColor);
    border: none !important;
    font-size: 18px;
    transition: all 0.5s;
    color: rgba(0, 0, 0, 0.6);
}

.quantity-input .qnt-btn:hover {
    color: var(--darkColor);
    background-color: var(--grayPlusColor);
}

.quantity-input input {
    box-shadow: none !important;
    outline: none !important;
    text-align: center;
    width: 34px;
    margin: 0 3px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    height: 20px;
    line-height: 1;
}

.quantity-input input::-webkit-outer-spin-button,
.quantity-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:before {
    position: absolute;
    display: block;
    content: 'ADET';
    width: 34px;
    bottom: 6px;
    left: 50%;
    margin-left: -16px;
    text-align: center;
    font-size: 11px;
    color: var(--gray-dark);
    font-weight: 400;
}

/*MINI QUANTITY*/
.quantity-input.mini-quantity {
    border-radius: 6px;
    height: 36px;
    padding: 2px;
}

.quantity-input.mini-quantity .qnt-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
}

.quantity-input.mini-quantity .qnt-btn:hover {
    background-color: var(--grayPlusColor);
}

.quantity-input.mini-quantity input {
    width: 34px;
    font-size: 14px;
    height: 16px;
}

.quantity-input.mini-quantity:before {
    bottom: 2px;
}

/*MINI QUANTITY*/

.product-action-box .product-quantity {
    float: left;
    margin-right: 20px;
}


.btn.btn-shop {
    height: 50px;
    min-width: 190px;
    margin: 0 2px;
    padding: 0 54px 0 25px;
    transition: all 0.5s;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    background-color: var(--grayColor);
    line-height: 50px;
    border-radius: 6px;
    color: var(--darkColor);
    text-align: left;
}

.btn.btn-shop i {
    position: absolute;
    right: 22px;
    font-size: 23px;
    top: 13px;
}

.btn.btn-shop.btn-price {
    background-color: var(--blueColor);
    color: #fff;
}

.btn.btn-shop.btn-price:hover {
    background-color: var(--darkColor);
}

.btn.btn-shop.btn-add-basket {
    background-color: var(--yellowColor);
}

.btn.btn-shop.btn-add-basket:hover {
    background-color: var(--darkColor);
    color: #fff;
}

.btn.btn-shop[disabled=disabled], .btn.btn-shop:disabled {
    cursor: default !important;
    background-color: var(--grayPlusColor) !important;
    color: rgba(0, 0, 0, 0.4) !important;
}

.product-min-detail {
    margin-top: 30px;
}

.product-detail-card {
    -webkit-box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    -moz-box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    background-color: #fff;
    padding: 30px 40px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.5s;
}

.product-detail-card:hover {
    -webkit-box-shadow: 0 0 59px 0 rgba(21, 44, 105, 0.2);
    -moz-box-shadow: 0 0 59px 0 rgba(21, 44, 105, 0.2);
    box-shadow: 0 0 59px 0 rgba(21, 44, 105, 0.2);
}

.product-detail-card:before {
    display: block;
    content: ' ';
    position: absolute;
    width: 10px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--redColor);
}

.product-detail-card .pr-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-detail-card .pr-detail-list {
    position: relative;
    margin-bottom: 15px;
}

.product-detail-card .pr-detail-list ul {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.product-detail-card .pr-detail-list li {
    padding: 0;
    line-height: 1.8;
}

.product-detail-card .pr-detail-list li i {
    color: var(--greenColor);
    font-size: 14px;
    margin-right: 10px;
}

.product-detail-card .pr-detail-list ul:before {
    display: block;
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-image: -moz-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 27%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 27%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 27%, rgb(255, 255, 255) 100%);
}

.product-detail-video-box {
    position: relative;
    background-color: var(--grayColor);
    margin-bottom: 30px;
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
}

.product-detail-video-box .video-sk-item.video-sk-item-min {
    margin-bottom: 0;
}

.video-sk-item.video-sk-item-min .video-sk-content {
    padding: 15px 15px 15px 50px;
}

.video-sk-item.video-sk-item-min .video-sk-content h2 {
    font-size: 13px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-sk-item.video-sk-item-min .video-sk-icon {
    left: 10px;
    margin-left: 0;
    top: inherit;
    bottom: 15px;
    margin-top: auto;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 34px;
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

/*PRODUCT*/


/*PRIME PRODUCT*/

.prime-product {
    position: relative;
    width: 100%;
    padding: 50px 0;
}

.prime-product-item {
    position: relative;
}

.prime-product-item .prime-product-img-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-repeat: no-repeat;
    background-size: contain;
}

.prime-product-item .prime-product-img-item .prime-label {
    position: absolute;
    padding: 12px 20px;
    background-color: var(--redColor);
    color: #fff;
    font-weight: bold;
    left: 0;
    top: 60px;
}

.prime-product-item .prime-product-img-item img {
    width: 100%;
    height: auto;
    clip-path: inset(30px);
    transition: all 0.3s ease;
}

.prime-product-item .prime-product-img-item:hover img {
    clip-path: inset(0);
}

.prime-product-item .prime-product-content {
    position: relative;
    padding-top: 30px;
    padding-left: 20px;
}

.prime-product-item .prime-product-head-top {
    position: relative;
}

.prime-product-item .prime-product-head-top .prime-tool-box {
    position: absolute;
    right: 0;
    top: -8px;
}

.product-pg .product-price {
    float: left;
}

.product-pg .product-rating {
    float: right;
    padding-top: 12px;
}


.prime-product-container .swiper-slide {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
}

.prime-product-container .swiper-slide.swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .prime-product {
        padding-top: 15px;
    }
}

/*PRIME PRODUCT*/

/*HOME PRODUCTS*/
.collective-product {
    width: 100%;
    padding: 50px 0;
    position: relative;
}

.sk-product-item {
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    transition: all 0.5s;
}

.sk-product-item:hover {
    box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.22);
}

.sk-product-item .sk-product-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.sk-product-item .sk-product-img img {
    width: 100%;
    height: auto;
}

.sk-product-item .sk-product-body {
    padding: 20px 20px 0;
}

.sk-product-item .sk-product-brand {
    color: #727272;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.sk-product-item .sk-product-brand a {
    color: var(--blueColor) !important;
}

.sk-product-item .sk-product-brand a:hover {
    text-decoration: underline;
    color: var(--redColor) !important;
}

.sk-product-item .sk-product-title {
    position: relative;
    margin-bottom: 15px;
}

.sk-product-item .sk-product-title h2, .sk-product-item .sk-product-title h3 {
    font-size: 18px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.sk-product-item .sk-product-price {
    line-height: 20px;
}

.sk-product-item .sk-product-price .old-price {
    font-size: 14px;
    font-weight: 500;
    color: #727272;
    line-height: 1;
    text-decoration: line-through;
    margin-right: 5px;
}

.sk-product-item .sk-product-price .dsc-price {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: var(--redColor);
}

.sk-product-item .sk-product-foot {
    padding: 20px;
}

.sk-product-item .sk-product-foot .btn-shop {
    float: right;
}

.collective-product-container .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}

.collective-product-container .swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.collective-product-container .swiper-slide-active + .swiper-slide {
    opacity: 1;
    visibility: visible;
}

.collective-product-container .swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 1;
    visibility: visible;
}

.collective-product-container .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
    opacity: 1;
    visibility: visible;
}

.collective-product-container .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide {
    opacity: 1;
    visibility: visible;
}


/*HOME PRODUCTS*/

.sk-tool-btn {
    font-size: 20px;
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
}

.sk-tool-btn:hover {
    background-color: var(--grayPlusColor);
}

.sk-tool-btn.active {
    background-color: var(--redColor) !important;
    color: #fff !important;
}

.sk-tool-btn.active:hover {
    background-color: var(--darkColor) !important;
}

.swiper-pagination {
    z-index: 1;
}

.btn {
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.btn.btn-light {
    background-color: #f0f0f0;
}

.btn.btn-light:hover {
    background-color: #e0e0e0;
}

.btn.btn-shop.btn-shop-mini {
    height: 34px;
    min-width: 54px;
    margin: 0;
    padding: 0 10px 0 10px;
    transition: all 0.5s;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    line-height: 34px;
    border-radius: 34px;
    color: var(--darkColor);
    text-align: center;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.btn.btn-shop.btn-shop-mini i {
    position: inherit;
    right: 0;
    font-size: 20px;
    top: 4px;
}


.section-title {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title h2, .section-title h1, .section-title h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    width: 100%;
}

.section-title .title-tool-box {
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;
}

.box-label {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: var(--redColor);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 12px;
    z-index: 1;
    display: block;
}

.box-label.blue-label {
    background-color: var(--blueColor);
}

.book-wrapper {
    position: relative;
    width: 100%;
    padding: 50px 0 0;
}

.book-box {
    width: 100%;
    position: relative;
    border-top: 7px solid var(--yellowColor);
    border-bottom: 7px solid var(--yellowColor);
    border-left: 7px solid var(--yellowColor);
    padding: 50px 0 50px 50px;
    margin-top: 15px;
}

.book-box:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 25px;
    background-color: var(--yellowColor);
    content: ' ';
    display: block;
    z-index: 1;
}

.book-box:before {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 7px;
    height: 25px;
    background-color: var(--yellowColor);
    content: ' ';
    display: block;
    z-index: 1;
}

.book-box .book-head {
    margin-bottom: 30px;
}

.book-box .book-head h2 {
    text-align: right;
}

.book-box .book-body {
    position: relative;
    text-align: right;
}

.book-box .book-body h3 {
    font-size: 36px;
    font-weight: bold;
    color: var(--blueDarkColor);
    margin-bottom: 30px;
    line-height: 1.3;
    padding-left: 100px;
}

.book-box .book-body p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
}

.book-img {
    position: relative;
    background-image: url(/assets/images/kb-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 15px;
}

.book-img img {
    max-width: 100%;
    height: auto;
}


.min-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}


/*BUTTON STYLE*/
.btn {
    border-radius: 10px;
    font-weight: bold;
    padding: 7px 20px;
    font-size: 16px;
    outline: none !important;
    box-shadow: none !important;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 5px 10px;
    font-size: 13px;
}

.btn-primary {
    background-color: var(--blueColor) !important;
    color: #fff !important;
}

.btn-border {
    border: 1px solid var(--grayPlusColor) !important;
    background-color: transparent !important;
    color: var(--gray-dark) !important;
}

.btn-yellow {
    background-color: var(--yellowColor) !important;
    color: var(--darkColor) !important;
}

.btn-default {
    background-color: var(--grayColor) !important;
    color: var(--darkColor) !important;
}

.btn-red {
    background-color: var(--redColor) !important;
    color: #fff !important;
}

.btn-yellow:hover, .btn-default:hover, .btn-primary:hover, .btn-border:hover, .btn-red:hover {
    background-color: var(--darkColor) !important;
    color: #fff !important;
}

.btn.btn-lg {
    font-size: 18px;
    font-weight: bold;
    padding: 0 40px;
    height: 54px;
    line-height: 54px;
}

.btn.btn-inline {
    font-size: 15px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn-border {
    border: 1px solid var(--grayPlusColor);
}


.btn-shadow {
    box-shadow: 0 6px 18px 0 rgba(21, 44, 105, 0.21) !important;
}

.btn-flat {
    border-radius: 0;
}

.btn-shadow:hover {
    box-shadow: 0 6px 18px 0 rgba(21, 44, 105, 0.44);
}

/*BUTTON STYLE*/

/*FORM-STYLE*/
.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid var(--grayPlusColor);
    padding-left: 15px;
    padding-right: 15px;
    outline: 0 !important;
    box-shadow: none !important;
    transition: border-color 0.5s;
}

.form-control:focus, .form-select:focus {
    border: 2px solid var(--blueColor);
}

.form-floating > .form-control, .form-floating > .form-select {
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.5;
}

.form-floating > label {
    padding-left: 16px;
    padding-right: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}


.form-select.is-invalid, .was-validated .form-select:invalid, .form-control.is-invalid {
    border-width: 2px !important;
}

/*FORM-STYLE*/

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/*FAST INFO*/
.fast-info {
    position: relative;
    padding-bottom: 50px;
}

.fast-info .fast-box {
    border: 1px solid var(--grayPlusColor);
    border-radius: 10px;
    padding: 30px 0 25px;
}

.fast-box-item {
    position: relative;
}

.fast-box-item .fast-box-icon {
    width: 60px;
    font-size: 44px;
    float: left;
    line-height: 1;
    text-align: center;
    color: var(--redColor);
}

.fast-box-item .fast-box-body {
    width: calc(100% - 60px);
    float: left;

}

.fast-box-item .fast-box-body h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.fast-box-item .fast-box-body span {
    font-size: 13px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*FAST INFO*/

/*BLOG*/
.home-blog {
    padding: 50px 0;
    position: relative;
}

.blog-item {
    position: relative;
    box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    border-radius: 10px;
    display: block;
    transition: all 0.5s;
}

.blog-item:hover {
    box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.22);
}

.blog-item .blog-item-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.blog-item .blog-date-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.9;
    font-size: 13px;
    line-height: 16px;
}

.blog-item .blog-date-box i {
    color: #fff;
    font-size: 16px;
}

.blog-item .blog-item-img img {
    width: 100%;
    height: auto;
    transition: all 0.5s;
}


.blog-item .blog-item-body {
    padding: 30px;
}

.blog-item .blog-item-body h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 66px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}

.blog-item.blog-item-grid .blog-item-body h3 {
    font-size: 18px;
    min-height: 57px;
}

/*BLOG*/


/*FOOTER*/

footer {
    position: relative;
}

.footer-top-menu {
    background-color: #283548;
    color: #fff;
}

.footer-top-menu .footer-top-menu-list {
    display: flex;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
}

.footer-top-menu .footer-top-menu-list li {
    margin: 0;
}

.footer-top-menu .footer-top-menu-list li.icon-box {
    font-size: 20px;
    padding: 15px 5px;
    line-height: 20px;
}

.footer-top-menu .footer-top-menu-list li > a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding: 15px 20px;
    display: block;
    line-height: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-menu .footer-top-menu-list li > a:hover {
    color: var(--greenColor);
}

.footer-top-menu .footer-top-menu-list li:nth-last-child(1) > a {
    border-right: 0;
}

@media (max-width: 1330px) {
    .footer-top-menu .footer-top-menu-list li > a {
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        padding: 15px 15px;
    }
}

@media (max-width: 1199px) {
    .footer-top-menu .footer-top-menu-list li > a {
        font-size: 16px;
        padding: 15px 15px;
    }
}

@media (max-width: 991px) {
    .footer-top-menu .footer-top-menu-list li > a {
        font-size: 15px;
        padding: 10px 10px;
    }
}

@media (max-width: 767px) {
    .footer-top-menu .footer-top-menu-list li.icon-box {
        display: none;
    }

    .footer-top-menu .footer-top-menu-list {
        display: block;
        background-color: rgba(255, 255, 255, 0.05);
    }


    .footer-top-menu .footer-top-menu-list li > a {
        border-right: 0;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
    }

    .footer-top-menu .footer-top-menu-list li:nth-last-child(1) > a {
        border-bottom: 0;
    }

}


footer .footer-body {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .footer-body .footer-left {
    background-color: #f5f7f9;
    min-height: 100%;
    float: left;
    width: calc(((100% - 1330px) / 2) + 430px);
}

footer .footer-body .footer-right {
    background-color: #e2e7ed;
    min-height: 100%;
    float: left;
    width: calc(((100% - 1330px) / 2) + (1330px - 430px));
}

footer .footer-body .footer-container {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

footer .footer-body .footer-left .footer-container {
    width: 430px;
    margin-left: auto;
    padding-right: 50px;
    padding-left: 15px;
}

footer .footer-body .footer-right .footer-container {
    width: 900px;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 15px;
}

footer .footer-contact-info {
    padding: 0;
    list-style: none;
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 16px;
}

footer .footer-contact-info li, footer .footer-contact-info li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.7;
    padding-bottom: 7px;
    color: #878889 !important;
}

footer .footer-contact-info li a:hover {
    color: var(--darkColor) !important;
}

footer .footer-contact-info li span {
    display: inline-block;
    float: left;
    width: calc(100% - 28px);
}

footer .footer-contact-info li span.fc-col {
    width: 28px;
}

footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-menu h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

footer .footer-menu li a {
    color: #484848 !important;
    padding: 0 0 18px;
    line-height: 1;
    display: block;
    font-size: 16px;
}

footer .footer-menu.footer-menu-large li a {
    font-size: 18px;
    font-weight: bold;
    color: var(--darkColor) !important;
    padding: 0 0 27px;
}

footer .footer-menu li:nth-last-child(1) a, footer .footer-menu.footer-menu-large li:nth-last-child(1) a {
    padding-bottom: 0;
}

footer .footer-menu li a:hover, footer .footer-menu.footer-menu-large li a:hover {
    color: var(--redColor) !important;
}

footer .banka-logo {
    margin-top: 50px;
    text-align: right;
}

footer .banka-logo img {
    max-width: 100%;
    height: auto;
}

footer .footer-bottom {
    position: relative;
    width: 100%;
    padding: 15px;
    background-color: #d0d6dd;
    text-align: center;
}

/*FOOTER*/

.social-box {
    position: relative;
}

.social-icon {
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 40px;
    background-color: #fff;
    color: var(--blueDarkColor) !important;
    font-size: 23px;
    line-height: 48px;
    text-align: center;
    margin-right: 8px;
    box-shadow: 2px 0 13px 0 rgba(32, 64, 153, 0.07);
}

.social-icon:hover {
    background-color: var(--darkColor);
    color: #fff !important;
}


.breadcrumb {
    padding: 20px 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
    font-size: 14px;
    font-weight: bold;
    overflow-x: auto;
    white-space: nowrap;
    display: block;
}

.breadcrumb-item {
    display: inline-block;
}

.breadcrumb a {
    color: #616161;
}

.breadcrumb-item.active {
    color: #9a9c9c;
    font-weight: 400;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #9a9c9c;
    content: ">";
}

@media (max-width: 991px) {
    .breadcrumb-section {
        padding-top: 110px;
    }
}


/*ARAMA SONUÇ*/

.product-search-container {
    position: relative;
    min-height: 120px;
}

.product-search-title {
    padding: 30px 0;
}

@media (max-width: 991px) {
    .product-search-title {
        padding: 0 0 30px;
    }
}

h1.page-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    line-height: 40px;
}

.product-search-title h1.page-title {
    text-transform: uppercase;
}

.product-search-title h1.page-title > span {
    font-weight: 400;
}

@media (max-width: 767px) {
    h1.page-title {
        font-size: 18px;
        line-height: 1.5;
    }
}

.no-result-box {
    padding: 50px;
    margin: 30px 0 50px;
    border: 1px solid var(--grayPlusColor);
    border-radius: 8px;
    font-size: 22px;
    color: var(--grayLight);
}

.no-result-box strong {
    color: var(--darkColor);
}

.no-result-box i {
    font-size: 90px;
    color: var(--grayLight);
    margin-bottom: 40px;
}

/*ARAMA SONUÇ*/


.dropdown-menu {
    padding: 0;
    border-radius: 0;
    border: 1px solid var(--grayPlusColor);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--grayPlusColor);
    color: var(--darkColor);
}

.dropdown-item {
    padding: 10px 15px;
    color: var(--darkColor);
}


.sort-tool-box {
    display: block;
    align-items: center;
    float: right;
    white-space: nowrap;
}

.sort-tool-box-body {
    display: block;
    float: left;
}

.product-mobile-filter {
    display: none;
}


@media (max-width: 991px) {
    .sort-tool-box {
        float: none;
    }

    .product-mobile-filter {
        display: block;
        float: left;
        margin-left: 15px;
    }

    .product-mobile-filter .btn {
        padding-left: 40px;
        position: relative;
        font-weight: bold;
        font-size: 14px;
        height: 40px;
    }

    .product-mobile-filter .btn i {
        position: absolute;
        left: 10px;
        top: 7px;
        font-size: 24px;
    }

}

.product-list-group {
    white-space: nowrap;
    margin-right: 15px;
    min-width: 80px;
    float: left;
}

.product-list-group .product-list-button {
    box-shadow: none;
    outline: none;
    background-color: #fff;
    color: #686868;
    border: 1px solid var(--grayPlusColor);
    border-left-width: 0;
    font-size: 24px;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 44px;
    text-align: center;
    margin: 0;
    float: left;
}

.product-list-group .product-list-button:hover {
    background-color: var(--grayColor);

}

.product-list-group .product-list-button.active {
    background-color: var(--grayPlusColor);
    color: var(--darkColor);
}


.product-list-group .product-list-button:nth-child(1) {
    border-left-width: 1px;
}

.product-count-title {
    margin-right: 15px;
    font-size: 14px;
    white-space: nowrap;
    display: block;
    float: left;
    height: 40px;
    line-height: 40px;
}

.product-sort-group {
    display: block;
    float: left;
}

@media (max-width: 767px) {
    .product-count-title {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        line-height: 1.5;
        height: auto;
    }

    .sort-tool-box-body {
        width: 100%;
        padding: 6px;
        text-align: center;
        background-color: var(--grayColor);
        border-radius: 6px;
    }

    .product-mobile-filter {
        float: right;
    }
}

@media (max-width: 767px) {
    .product-sort-group .bootstrap-select {
        width: 100%;
        max-width: 150px;
    }
}

@media (max-width: 380px) {
    .product-sort-group .bootstrap-select {
        max-width: 120px;
    }
}


.product-sort-group .bootstrap-select .btn {
    font-size: 14px !important;
    outline: none !important;
    box-shadow: none !important;
    height: 40px;
    border-radius: 0;
    background-color: var(--grayColor);
    border: 1px solid var(--grayPlusColor);
    line-height: 40px;
    padding: 0 8px 0 15px;
    font-weight: 500;
    color: var(--darkColor);
}

.product-sort-group .bootstrap-select .dropdown-toggle .filter-option i {
    font-size: 24px;
    position: absolute;
    left: 7px;
    top: 7px;
}

.product-sort-group .dropdown-item {
    height: 40px;
    line-height: 40px;
    padding: 0 8px 0 15px;
    font-weight: 500;
    font-size: 14px;
}

.product-sort-group .dropdown-item .icon {
    font-size: 21px;
    position: absolute;
    left: 7px;
    top: 7px;
}


.product-search-list {
    padding-bottom: 20px;
}

/*FILTER*/
.filter-box {
    position: relative;
    border-radius: 10px;
    border: 1px solid #eeeff0;
    margin-bottom: 30px;
}

.filter-box .filter-section {
    padding: 20px;
    border-bottom: 1px solid #eeeff0;
}

.filter-box .filter-section:nth-last-child(1) {
    border-bottom: 0;
}

.filter-box .filter-section h3.filter-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .filter-section-body {
        display: block !important;
    }
}

.filter-section-body > .filter-section-list {
    padding: 0;
    list-style: none;
    font-size: 14px;
    margin-bottom: 0;
    max-height: 250px;
    overflow-y: auto;
}

.filter-section-body > .filter-section-list .filter-section-item {
    padding: 0 40px 10px 0;
    position: relative;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-section-body > .filter-section-list .filter-section-item:nth-last-child(1) {
    padding-bottom: 0;
}

.filter-section-body > .filter-section-list.check-control .filter-section-item {
    padding-right: 0;
}

.filter-section-body > .filter-section-list .filter-section-item .badge {
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 20px;
    position: absolute;
    right: 0;
    top: 0;
}

.filter-section-body > .filter-section-list .filter-section-item .badge.badge-light {
    background-color: var(--grayColor);
    color: var(--darkColor);
}

.filter-section .filter-section-body .filter-form-control {
    padding-bottom: 15px;
}

.filter-section .filter-section-body .filter-form-control .filter-input {
    height: 36px;
    border: 2px solid var(--grayPlusColor);
    box-shadow: none !important;
    outline: none !important;
    font-size: 13px;
    color: var(--darkColor);
    width: 100%;
    border-radius: 6px;
    padding: 0 15px;
}

.filter-section .filter-section-body .filter-form-control.filter-form-group .filter-input {
    width: calc((100% - 22px - 41px) / 2);
    float: left;
    padding: 0 10px;
}

.filter-section .filter-section-body .filter-form-control .filter-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    line-height: 39px;
    box-shadow: none !important;
    border: 0;
    outline: none !important;
    background-color: var(--grayPlusColor);
    color: #fff;
    font-size: 21px;
    border-radius: 6px;
    float: left;
    margin-left: 5px;
    transition: all 0.5s;
}

.filter-section .filter-section-body .filter-form-control .filter-btn:hover {
    background-color: var(--darkColor);
}

.filter-section .filter-section-body .filter-form-control .seperator {
    display: block;
    float: left;
    width: 22px;
    height: 36px;
    line-height: 36px;
    color: var(--grayPlusColor);
    font-size: 21px;
    text-align: center;
}

.filter-section .filter-section-body .filter-form-control .filter-input::-webkit-input-placeholder { /* Edge */
    color: var(--grayPlusColor);
}

.filter-section .filter-section-body .filter-form-control .filter-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--grayPlusColor);
}

.filter-section .filter-section-body .filter-form-control .filter-input::placeholder {
    color: var(--grayPlusColor);
}

.filter-section-body > .filter-section-list .filter-section-item .form-check-label {
    display: block;
    width: 100%;
    padding-right: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

.filter-section-body > .filter-section-list .filter-section-item .form-check-label span.check-text {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 13px;
    line-height: 20px;
    text-overflow: ellipsis;
}

.filter-section-body > .filter-section-list .filter-section-item .form-check {
    padding-left: 23px;
}

.filter-section-body > .filter-section-list .filter-section-item .form-check-label::before {
    position: absolute;
    top: 1px;
    left: -23px;
    display: block;
    width: 18px;
    height: 18px;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #b9bfc4 solid 2px;
    outline: none !important;
    box-shadow: none !important;
}

.filter-section-body > .filter-section-list .filter-section-item .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: var(--blueColor);
    background-color: var(--blueColor);
}

.filter-section-body > .filter-section-list .filter-section-item .custom-control-label::after {
    position: absolute;
    top: 1px;
    left: -23px;
    display: block;
    width: 18px;
    height: 18px;
    content: "";
}

/*FILTER*/

.mCSB_scrollTools {
    width: 10px;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

.mCSB_inside > .mCSB_container {
    margin-right: 15px;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: var(--grayPlusColor);
    border-radius: 4px;
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: var(--grayColor);
    width: 4px;
    border-radius: 4px;
    display: none;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: var(--grayPlusColor);
}

.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: var(--grayColor);
}

.sk-col-side {
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    max-width: 270px;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.sk-col-content {
    -ms-flex: 0 0 calc(100% - 270px);
    flex: 0 0 calc(100% - 270px);
    max-width: calc(100% - 270px);
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.filter-section-body > .filter-section-list.mCustomScrollbar:not(.mCS_no_scrollbar) {
    width: calc(100% + 15px);
}

.product-list-container .product-col {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 30px;
}

.product-list-container .sk-product-item .sk-product-title h2, .product-list-container .sk-product-item .sk-product-title h3 {
    font-size: 18px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    line-height: 24px;
    height: 48px;
}


.product-list-container.grid-3 .product-col {
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
}

.product-list-container.grid-4 .product-col {
    -ms-flex: 0 0 calc(100% / 4);
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
}

.product-list-container.grid-4 .sk-product-item .sk-product-title h2, .product-list-container.grid-4 .sk-product-item .sk-product-title h3 {
    font-size: 15px;
    line-height: 22px;
    height: 44px;
}

.sk-col-banner {
    width: 100%;
    position: relative;
}

.sk-col-banner img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}


.sk-col-side .sk-col-side-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background-color: #fff;
    display: none;
    border-bottom: 2px solid var(--grayPlusColor);
    z-index: 9;
}

.sk-col-side .sk-col-side-foot {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #fff;
    display: none;
    border-top: 2px solid var(--grayPlusColor);
    z-index: 9;
}

.sk-col-side .sk-col-side-header .filter-close {
    float: left;
    width: 32px;
    height: 32px;
    line-height: 34px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.5s;
    display: block;
    background-color: var(--grayColor);
    border-radius: 6px;
    opacity: 0.5;
}

.sk-col-side .sk-col-side-header .filter-close i {
    font-size: 11px;
}

.sk-col-side .sk-col-side-header h4 {
    font-size: 18px;
    font-weight: bold;
    float: left;
    line-height: 32px;
    margin-left: 10px;
    margin-bottom: 0;
}

.sk-col-side .sk-col-side-header .filter-refresh {
    display: block;
    float: right;
    font-size: 16px;
    line-height: 32px;
}

/*PRODUCT DETAIL*/
.product-container {
    position: relative;
}

.product-container .pro-side {
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
    max-width: 47%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

.product-container .pro-content {
    -ms-flex: 0 0 53%;
    flex: 0 0 53%;
    max-width: 53%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

@media (max-width: 991px) {
    .product-container .pro-side, .product-container .pro-content {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.product-container .prime-product-item .prime-product-content {
    padding: 20px;
    border: 1px solid var(--grayPlusColor);
    border-radius: 10px;
}

.prime-product-item .prime-product-content .product-min-half-info {
    border-radius: 10px;
    border: 1px solid var(--grayPlusColor);
    margin-top: 30px;
}

.prime-product-item .prime-product-content .product-min-half-info > div {
    padding: 20px 20px 20px 10px;
    border-right: 1px solid var(--grayPlusColor);
    float: left;
    width: 50%;
}

.prime-product-item .prime-product-content .product-min-half-info > div:nth-last-child(1) {
    border-right: 0;
}

.product-slide {
    position: relative;
}

.product-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .prime-product-item .product-min-detail {
        display: none;
    }
}

@media (max-width: 991px) {
    .product-container .prime-product-item .prime-product-content {
        margin-top: 30px;
    }

    .prime-product-item .prime-product-content .product-min-half-info > div {
        padding: 15px 15px 15px 10px;
    }

    .prime-product-item .prime-product-content .product-min-half-info > div .fast-box-item {
        margin-bottom: 0;
    }

    .prime-product-item .prime-product-content .product-min-half-info > div .fast-box-item .fast-box-icon {
        width: 100%;
        font-size: 36px;
        float: none;
        text-align: center;
        margin-bottom: 10px;
    }

    .prime-product-item .prime-product-content .product-min-half-info > div .fast-box-item .fast-box-body h4 {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 0;
    }

    .prime-product-item .prime-product-content .product-min-half-info > div .fast-box-item .fast-box-body span {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .product-container .prime-product-item .prime-product-content {
        border-radius: 0;
        padding: 0;
        border: 0;
    }
}

.product-slide-thumbs {
    position: relative;
    margin-top: 8px;
}

.product-slide-thumbs .thumbs-arrow {
    left: 0;
    top: 50%;
    margin-top: -25px;
    position: absolute;
}

.product-slide-thumbs .thumbs-arrow a {
    color: var(--grayPlusColor) !important;
    transition: all 0.5s;
    display: block;
    width: 80px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 25px;
}

.product-slide-thumbs .thumbs-arrow a:hover {
    color: var(--darkColor) !important;
}

.product-slide-thumbs .thumbs-arrow.next {
    left: inherit;
    right: 0;
}

.product-slide-thumbs .product-slide-thumb-content {
    width: calc(100% - 160px);
    margin: auto;
    position: relative;
}

.product-slide-thumbs .thumbs-item {
    cursor: pointer;
}

.product-slide-thumbs .thumbs-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.product-slide-thumbs .swiper-slide-thumb-active .thumbs-item {
    border: 3px solid var(--redColor);
    border-radius: 10px;
    overflow: hidden;
}


.product-detail-container {
    position: relative;
    padding: 30px 0 0;
}

.product-side {
    position: relative;
}

.product-tab-menu {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.product-tab-menu li a.product-tab-menu-item {
    position: relative;
    display: block;
    border-radius: 10px;
    padding: 20px 40px 20px 20px;
    border: 1px solid var(--grayPlusColor);
    color: var(--darkColor) !important;;
    background-color: #fff !important;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-tab-menu li:nth-last-child(1) a.product-tab-menu-item {
    margin-bottom: 0;
}

.product-tab-menu li a.product-tab-menu-item i {
    position: absolute;
    right: 10px;
    font-size: 23px;
    top: 15px;
}

.product-tab-menu li a.product-tab-menu-item:hover {
    border-color: var(--redColor) !important;
    color: var(--redColor) !important;
}

.product-tab-menu li a.product-tab-menu-item.active {
    background-color: var(--redColor) !important;
    color: #fff !important;
    border-color: var(--redColor);
    cursor: default;
}

.product-side-card {
    position: relative;
    border: 1px solid var(--grayPlusColor);
    border-radius: 10px;
    padding: 30px 20px 20px;
    overflow: hidden;
    transition: opacity 1s;
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.product-side-card.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: auto;
}

.product-side-card:before {
    display: block;
    content: ' ';
    position: absolute;
    height: 10px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--redColor);
}

.product-side-card .product-side-card-img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-side-card .product-side-card-img img {
    width: 100%;
    height: auto;
}

.product-side-card .product-price .product-discount strong {
    font-size: 18px;
}

.product-side-card .product-price .product-discount {
    height: 44px;
    padding: 8px 8px;
    font-size: 10px;
}

.product-side-card .product-price .product-price-int .pricediscount {
    font-size: 16px;
    margin-bottom: 0;
}

.product-side-card .product-price .product-price-int .price {
    font-size: 28px;
}

.product-side-card .product-price .product-price-int .price > text {
    font-size: 16px;
}

.product-side-card .product-side-card-foot {
    padding: 10px 0 0;
    margin-top: 10px;
    border-top: 1px solid var(--grayPlusColor);
}

.product-side-card .product-side-card-foot .btn-shop {
    float: right;
}


.home-slider-thumbs .swiper-wrapper, .product-slide-thumbs .swiper-wrapper {
    justify-content: center;
}

.product-detail-tab-content {
    position: relative;
    border: 1px solid var(--grayPlusColor);
    border-radius: 10px;
    display: none;
}

.product-detail-tab-content.active {
    display: block;
}

.product-detail-tab-content .product-detail-content-head {
    height: 58px;
    background-color: var(--grayColor);
    line-height: 58px;
    border-bottom: 1px solid var(--grayPlusColor);
    border-radius: 10px 10px 0 0;
    padding: 0 30px;
    position: relative;
}

.product-detail-tab-content .product-detail-content-head h2 {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 58px;
}

.product-detail-tab-content .product-detail-content-body {
    position: relative;
}

.product-detail-tab-content .product-detail-content-body .product-detail-section {
    padding: 30px;
    border-bottom: 1px solid var(--grayColor);
    font-size: 15px;
    line-height: 1.7;
}

.product-detail-tab-content .product-detail-content-body .product-detail-section hr {
    margin-top: 30px;
    margin-bottom: 30px;
    border: 0;
    border-top: 1px solid var(--grayColor);
}

.product-detail-tab-content .product-detail-content-body img {
    max-width: 100%;
    height: auto;
}

figure.image {
    display: table;
    clear: both;
    text-align: center;
    margin: 1em auto;
}

figure.image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

figure.image.image-style-align-center {
    margin: auto;
}

figure.image.image-style-align-left {
    float: left;
    margin-right: 15px;
}

figure.image.image-style-align-right {
    float: right;
    margin-left: 15px;
}

figure.image figcaption {
    text-align: center;
    padding: 10px 15px;
    font-size: 0.8rem;
    font-style: italic;
    background-color: var(--grayColor);
}


.product-detail-tab-content .product-detail-content-body .product-detail-section:nth-last-child(1) {
    border-bottom: 0;
}

.product-detail-tab-content .product-detail-content-body .product-detail-section h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.product-detail-tab-content .product-detail-content-body .product-detail-section .article-img {
    border-radius: 10px;
    background-color: var(--grayPlusColor);
    box-shadow: 0 10px 59px 0 rgba(21, 44, 105, 0.06);
    height: 360px;
}

.product-feature {
    background-color: var(--grayColor);
    display: block;
    padding: 0 30px;
    width: 100%;
}

.product-table {
    width: 100%;
    position: relative;
}

.product-table .pr-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-table .pr-row:nth-last-child(1) {
    border: 0;
}

.product-table .pr-row .pr-cell {
    width: 50%;
    padding: 0 15px;
}

/*PRODUCT DETAIL*/


.ui-widget.ui-widget-content {
    border: 2px solid var(--redColor);
    border-radius: 10px;
    padding: 15px;
    z-index: 999;
}

@media (min-width: 1199px) {
    .ui-widget.ui-widget-content {
        width: 600px;
    }
}

.ui-menu {
    list-style: none;
}

.ui-menu .ui-menu-item {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 10px 15px !important;
    border-radius: 30px;
    border: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    display: block;
    align-content: center;
    margin: 0 !important;

}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: var(--grayColor);
    color: var(--darkColor);
    margin-top: 0;
    top: 0;
}

.ui-menu .ui-menu-item-wrapper span.ui-at-title {
    display: inline-flex;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-menu .ui-menu-item-wrapper span.ui-at-label {
    text-align: right;
    display: inline-flex;
    float: right;
    background-color: var(--grayPlusColor);
    border-radius: 10px;
    padding: 3px 10px;
    font-size: 10px;
    opacity: 0.4;
}

.search-engine-container {
    position: relative;
    margin-top: 5px;
}

.search-engine-container .ui-autocomplete {
    position: absolute;
    top: 0 !important;
    text-align: left;
    max-height: 360px;
    overflow-y: auto;
}

.spinner {
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

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

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

/*SEPET*/

.shop-cart-container {
    padding: 0 0 50px;
}

@media (max-width: 991px) {
    .shop-cart-container {
        padding: 140px 0 50px;
    }

    .shop-cart-container .product-count-title {
        margin-bottom: 0;
    }

}


.cart-item-list {
    padding: 30px;
    border: 1px solid var(--grayPlusColor);
    border-radius: 8px;
}

.cart-item-list .quantity-input {
    border-color: var(--grayColor);
}

.cart-item ul, .cart-item li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.cart-item-list .cart-item + .cart-item {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dotted var(--grayPlusColor);
}

.cart-item {
    display: flex;
}

.cart-item .dropdown-toggle {
    font-size: 0.875rem;
    color: #999999;
}

.cart-item .dropdown-toggle span {
    color: #000;
}

.cart-item img {
    max-width: 72px;
    border-radius: 10px;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.2);
}

.cart-item + .cart-item {
    margin-top: 0.625rem;
}

.cart-item-body {
    position: relative;
    flex: 1;
    padding-left: 0.9375rem;
}

.cart-item-title {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: bold;
}

.cart-item-subtitle {
    color: var(--gray-dark);
}

.cart-item-meta {
    display: block;
    margin: 5px 0 10px !important;
    font-size: 17px;
    font-weight: bold;
}

.cart-item-meta * {
    display: inline-block;
}

.cart-item-meta s {
    font-weight: 400;
    font-size: 14px;
}

.cart-item-meta .text-red {
    color: var(--redColor);
}

.cart-item-options {
    display: inline-block;
}

.cart-item-options a {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    display: block;
    width: 1.875rem;
    height: 1.875rem;
    line-height: 1.875rem;
    text-align: center;
    font-size: 1.125rem;
    color: #cecece;
    border: 1px solid #e9e9e9;
    border-radius: 50%;
}

.cart-item-options a:hover {
    color: #000;
    border-color: #000;
}

@media (max-width: 767px) {
    .cart-item-list {
        padding: 15px;
    }

    .prime-tool-box .sk-tool-btn {
        margin-bottom: 5px;
    }

    .cart-item-title {
        font-size: 14px;
    }

    .cart-item-meta {
        font-size: 14px;
    }

}

.cart-item-info {
    border: 1px solid var(--grayPlusColor);
    border-radius: 8px;
    background-color: #fff;
}

.cart-item-info .cart-item-info-box {
    padding: 30px 20px;
    border-bottom: 1px dotted var(--grayPlusColor);
}

.cart-item-info .cart-item-info-box:nth-last-child(1) {
    border-bottom: 0;
}

.cart-item-info .cart-item-info-box .cart-item-info-title h2 {
    color: var(--grayLight);
    font-size: 13px;
    margin: 0 0 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cart-item-info .cart-item-info-box .price {
    font-size: 30px;
    font-weight: bold;
    color: var(--redColor);
    margin: 0;
    line-height: 1;
}

.btn.btn-side-price {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 17px;
}

.cart-item-info-list-item {
    position: relative;
    display: flex;
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 6px;
}

.cart-item-info-list-item:nth-last-child(1) {
    margin-bottom: 0;
}

.cart-item-info-list-item .ci-col-60 {
    display: inline-table;
    flex-direction: column;
    width: 60%;
    padding-right: 10px;

}

.cart-item-info-list-item .ci-col-40 {
    display: inline-table;
    flex-direction: column;
    width: 40%;
}

.freeShippingPrice {
    color: var(--greenColor);
}

.cart-box-content-null {
    position: relative;
    padding: 50px 0;
}

.cart-box-content-null h3 {
    font-size: 22px;
}

.cart-box-content-null i {
    font-size: 90px;
    color: var(--redColor);
    margin-bottom: 40px;
}

.cart-item-info-collapse-button {
    width: 22px;
    height: 44px;
    font-size: 23px;
    padding: 0;
    line-height: 44px;
    display: none;
    margin-right: 5px;
}

@media (max-width: 991px) {

    .cart-item-info {
        display: block;
        position: fixed;
        width: 100%;
        z-index: 99999999999;
        bottom: 0;
        left: 0;
        border: 0;
        background-color: #fff;
        border-radius: 0;
        -webkit-box-shadow: 0 -10px 13px -6px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 -10px 13px -6px rgba(0, 0, 0, 0.15);
        box-shadow: 0 -10px 13px -6px rgba(0, 0, 0, 0.15);

    }

    .cart-item-info-collapse-button {
        display: inline-block;
        float: left;
        margin-top: -3px;
        position: relative;
    }

    .cart-item-info-collapse-button i {
        position: absolute;
        width: 22px;
        height: 22px;
        top: 50%;
        left: 50%;
        margin-top: -12px;
        margin-left: -11px;
        transition: all 0.3s;
    }

    .cart-item-info .cart-item-info-box {
        display: none;
    }

    .cart-item-info .cart-item-info-box.cart-item-price-info {
        border: 0;
        border-radius: 0;
        display: block;
        padding: 15px;
    }

    .cart-item-info .cart-item-info-box.cart-item-price-info .price {
        font-size: 20px;
    }

    .cart-item-info .cart-item-info-box.cart-item-price-info .cart-item-info-title h2 {
        font-size: 12px;
        letter-spacing: 0;
        margin-bottom: 5px;
    }

    .cart-item-info .cart-item-info-box.cart-item-price-info .btn.btn-side-price {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
        display: inline-block;
        width: auto;
        position: absolute;
        right: 15px;
        top: -11px;
        height: 44px;
        line-height: 44px;
    }

    .cart-item-info .cart-item-info-box.cart-item-price-bottom {
        display: none;
        position: relative;
        background: #fff;
        width: 100%;
        border-top: 1px dashed var(--grayPlusColor);
        padding: 15px 20px;
    }

    .cart-item-info .cart-item-info-box.cart-item-price-info .price > text {
        font-size: 14px;
    }

}

@media (max-width: 359px) {
    .cart-item-info .cart-item-info-box.cart-item-price-info .price {
        font-size: 18px;
    }

    .cart-item-info .cart-item-info-box.cart-item-price-info .price > text {
        font-size: 12px;
    }
}

/*SEPET*/


/*WIZARD*/

.wizard-box {
    position: relative;
    padding: 30px 0;
}

.wizard-list {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.wizard-list li {
    float: left;
    padding: 0 40px;
    position: relative;
}

.wizard-list li:after {
    position: absolute;
    width: 30px;
    content: "";
    height: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    right: 0;
    top: 50%;
    margin-top: -1.5px;
    background-color: var(--grayColor);
}

.wizard-list li:before {
    position: absolute;
    width: 30px;
    content: "";
    height: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    left: 0;
    top: 50%;
    margin-top: -1.5px;
    background-color: var(--grayColor);
}

.wizard-list li:nth-child(1):before {
    display: none;
}

.wizard-list li:nth-child(1) {
    padding-left: 0;
}

.wizard-list li:nth-last-child(1) {
    padding-right: 0;
}


.wizard-list li:nth-last-child(1):after {
    display: none;
}

.wizard-list li a {
    display: block;
    padding: 0 30px;
    min-width: 130px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid var(--grayPlusColor);
    border-radius: 30px;
    height: 40px;
    line-height: 40px;
    color: var(--grayLight);
    text-align: center;
    position: relative;
    cursor: default;
    opacity: 0.8;
}

.wizard-list li a.active {
    color: var(--greenColor);
    border-color: var(--greenColor);
    opacity: 1;
}

.wizard-list li a:after {
    display: block;
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    border-radius: 3px;
    background-color: var(--grayPlusColor);
    left: 50%;
    margin-left: -25px;
    bottom: -3px;
}

.wizard-list li a.active:after {
    background-color: var(--greenColor);
}

.wizard-list li a.active:before {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid var(--greenColor);
}

@media (max-width: 767px) {
    .wizard-list li {
        float: left;
        padding: 0 25px;
        position: relative;
    }

    .wizard-list li:after {
        width: 15px;
    }

    .wizard-list li:before {
        width: 15px;
    }

    .wizard-list li a {
        padding: 0 15px;
        min-width: 100px;
    }

    .wizard-list li a.active {
        padding: 0 30px;
    }
}

@media (max-width: 500px) {
    .wizard-list {
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
        overflow-y: hidden;
        display: flex;
        padding-bottom: 7px;
    }

    .wizard-list li {
        float: none;
        display: inline-block;
    }

    .wizard-list li:after {
        width: 15px;
    }

    .wizard-list li:before {
        width: 15px;
    }

    .wizard-list li a {
        padding: 0 15px;
        min-width: 80px;
        font-size: 13px;
        height: 34px;
        line-height: 34px;
    }
}

/*WIZARD*/

.shop-cart-wrapper {
    padding: 50px;
    border: 1px solid var(--grayColor);
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(21, 44, 105, 0.16);
    margin-right: 30px;
}

@media (max-width: 1199px) {
    .shop-cart-wrapper {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .shop-cart-wrapper {
        padding: 15px;
    }
}


.shop-cart-wrapper .section-title {
    margin-bottom: 20px;
}

.shop-cart-wrapper .section-title h2 {
    font-size: 16px;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

@media (max-width: 767px) {
    .mb-xs-30 {
        margin-bottom: 30px !important;
    }
}

hr.hr {
    margin: 25px 0;
    background-color: transparent;
    border-top: 1px dotted var(--grayPlusColor);
    opacity: 1;
}

.BireyselFatura, .KurumsalFatura, .InvoiceAddressBox {
    display: none;
}

.sk-alert {
    position: relative;
    min-height: 54px;
    padding-left: 50px;
    border-radius: 8px;
}

.sk-alert .sk-icon {
    font-size: 30px;
    position: absolute;
    top: 10px;
    left: 12px;
}

.swal2-container {
    z-index: 99999;
}

.hidden {
    display: none;
}

/*Adres*/
.add-item {
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--grayPlusColor);
    padding: 40px 30px 30px;
    cursor: pointer;
}

.sk-selected-item {
    background-color: var(--blueColor);
    position: absolute;
    top: -1px;
    left: -1px;
    border-bottom-right-radius: 4px;
    letter-spacing: 1px;
    padding: 3px 8px;
    color: #fff;
    font-size: 10px;
    display: none;
}

.add-item.active {
    border: 5px solid var(--blueColor);
    padding: 36px 26px 26px;
    cursor: default;
}

.add-item.active .sk-selected-item {
    display: block;
}

.add-item .add-item-tool {
    position: absolute;
    right: 5px;
    top: 5px;
}

.add-item h3 {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 5px;
}

.add-item h3 label {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 25px;
    cursor: pointer;
    display: block;
}

.add-item p {
    font-size: 13px;
    letter-spacing: -0.02rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    line-height: 1.5rem;
    margin-bottom: 0;
}

.add-item p {
    -webkit-line-clamp: 2;
}

/*Adres*/


/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
*******************************/
.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 550px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: none;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 80px 50px 50px;
}

/*Left*/
.modal.left.fade .modal-dialog {
    left: -550px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
    left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: -550px;
    max-width: 550px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
    right: 0;
}

.modal-header.modal-fixed-header {
    padding: 0;
    border-bottom: 0;
}

.modal-header.modal-fixed-header .btn-close {
    position: absolute;
    left: 15px;
    top: 15px;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 8px;
    background-color: var(--grayPlusColor);
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;

}

.modal {
    z-index: 99999;
}

@media (max-width: 991px) {
    .modal.left .modal-dialog,
    .modal.right .modal-dialog {
        width: 100%;
    }

    .modal.left .modal-body,
    .modal.right .modal-body {
        padding: 80px 50px 50px;
    }

    .modal.left.fade .modal-dialog {
        left: 100%;
    }

    /*Right*/
    .modal.right.fade .modal-dialog {
        right: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .modal.left .modal-body,
    .modal.right .modal-body {
        padding: 80px 30px 50px;
    }
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
*******************************/

.sk-loading {
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    display: block;
    background-color: #fff;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
}

.sk-loading .sk-loading-box {
    width: 100px;
    height: 100px;
    font-size: 60px;
    text-align: center;
    line-height: 110px;
    align-items: center;
    padding: 0;
    position: relative;
    display: contents;
}

.sk-loading .sk-loading-box i {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    margin-left: -30px;
    top: 50%;
    margin-top: -30px;
    color: var(--grayLight);
    opacity: 1;
}

.sk-loading.active {
    display: flex;
}

.form-check-input {
    width: 23px;
    height: 23px;
    margin-top: 0;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 2px solid #b9bfc4 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 5px;
}

.form-check-input:checked {
    background-color: var(--blueColor) !important;
    border-color: var(--blueColor) !important;
}

.form-check-input.form-check-input-mini {
    width: 18px;
    height: 18px;
}

.form-check-input[type=checkbox] {
    border-radius: 7px;
}

.form-check-input.form-check-input-mini[type=checkbox] {
    border-radius: .25rem;
}


.form-floating .iti--allow-dropdown input, .form-floating .iti--allow-dropdown input[type=tel], .form-floating .iti--allow-dropdown input[type=text], .form-floating .iti--separate-dial-code input, .form-floating .iti--separate-dial-code input[type=tel], .form-floating .iti--separate-dial-code input[type=text] {
    margin-left: 0;
    height: calc(3.5rem + 2px);
    padding: 1rem 6px 1rem 52px;
    border-radius: 10px;
    border: 1px solid var(--grayPlusColor);
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px;
    outline: none !important;
    box-shadow: none !important;
}

.CustomerLoginAddressList {
    position: relative;
}


/*KREDİ KARTI*/
.credit-card-sk {
    max-width: 360px;
    height: 224px;
    background-color: var(--grayColor);
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 10px;
    /*border:1px solid var(--grayPlusColor);*/
    /*-webkit-box-shadow: 8px 8px 3px 0px rgba(0,0,0,0.05);*/
    /*-moz-box-shadow: 8px 8px 3px 0px rgba(0,0,0,0.05);*/
    /*box-shadow: 8px 8px 3px 0px rgba(0,0,0,0.05);*/
}

.CreditCardForm .form-floating .form-control:focus::placeholder {
    color: rgba(0, 0, 0, 0.24);
}

.credit-card-sk .banka-logo {
    width: 100px;
    height: 32px;
    position: absolute;
    top: 20px;
    left: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.credit-card-sk .banka-chip {
    width: 51px;
    height: 45px;
    position: absolute;
    top: 80px;
    left: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--grayPlusColor);
}

.credit-card-sk .banka-logo img, .credit-card-sk .banka-chip img {
    width: 100%;
    height: auto;
}

.credit-card-sk .credit-card-sk-number {
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: justify;
    position: absolute;
    color: var(--grayLight);
    left: 40px;
    right: 20px;
    height: 30px;
    top: 130px;
}

.CreditCardForm input {
    text-transform: uppercase !important;
}

.CreditCardForm input::placeholder {
    text-transform: none !important;
}

#CardInstallmentResult {
    position: relative;
    margin-top: 30px;
}

.table-installment td, .table-installment th {
    padding: .75rem;
}

.table-installment tbody tr, .table-installment tbody tr * {
    cursor: pointer;
}

/*2*/
.cc-card {
    width: 360px;
    height: 224px;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    perspective: 600px;
    position: relative;
    margin: auto;
}

@media (max-width: 1199px) {
    .cc-card {
        display: none;
    }
}

.card__part {
    box-shadow: 1px 1px #aaa3a3;
    top: 0;
    position: absolute;
    z-index: 1000;
    left: 0;
    display: inline-block;
    width: 360px;
    height: 224px;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 10px;
    -webkit-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.card__chip {
    margin-top: 15px;
    padding-left: 13px;
}

.card__chip img {
    max-width: 50px;
}

.card__front {
    padding: 18px;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
}

.card__back {
    padding: 18px 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
}

.card__black-line {
    margin-top: 5px;
    height: 38px;
    background-color: #303030;
}

.card__logo {
    height: 28px;
}

.card__front-logo {
    position: absolute;
    top: 18px;
    right: 18px;
}

.card__square {
    height: 35px;
}

.card_numer {
    display: block;
    width: 100%;
    word-spacing: 4px;
    font-size: 23px;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.card__info_box {
    position: absolute;
    width: 100%;
    bottom: 25px;
    left: 0;
    padding: 0 20px 0 25px;
}

.card__space-75 {
    width: 75%;
    float: left;
}

.card__space-25 {
    width: 25%;
    float: left;
}

.card__label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--grayLight);
    letter-spacing: 1px;
}

.card__info {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card__back-content {
    padding: 15px 15px 0;
}

.card__secret--last {
    color: #303030;
    margin: 0;
    font-size: 14px;
    float: right;
    padding: 0 5px;
    width: 50px;
    text-align: center;
}

.card__secret {
    padding: 5px;
    background-color: #fff;
    position: relative;
}

.card__secret:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    height: calc(100% + 6px);
    width: calc(100% - 60px);
    border-radius: 4px;
    background: repeating-linear-gradient(45deg, #ededed, #ededed 5px, #f9f9f9 5px, #f9f9f9 10px);
}

.card__back-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.card__back-square {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.cc-card.ccv-back-screen .card__front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
}

.cc-card.ccv-back-screen .card__back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
}


.card_numer.active, .card__info.active, .card__secret--last.active {
    background-color: #fff;
    color: var(--greenColor);
    transition: all 0.5s;
}

/*KREDi KARTI*/


.sk-order-container {
    padding: 50px 0;
    position: relative;
}

@media (max-width: 991px) {
    .sk-order-container {
        padding: 140px 0 50px;
    }

    .sk-order-side {
        display: none;
    }
}

.sk-side-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.title-name-side .sk-side-title {
    line-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--grayLight);
}

.side-wide-menu {
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--grayPlusColor);
}

.side-wide-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.side-wide-menu ul li a {
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    padding: 12px 15px;
}

.sk-order-container h1.page-title {
    margin-bottom: 20px;
}

.sk-order-container .badge {
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
}

.cart-item-image-multiple {
    position: relative;
}

.cart-item-image-multiple {
    margin-right: 25px;
}

.cart-item-image-multiple img {
    width: 50px;
    left: 0;
    z-index: 2;
    position: relative;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: none;
}

.cart-item-image-multiple img:nth-child(2) {
    position: absolute;
    left: auto;
    z-index: 1;
    width: 44px;
    right: -10px;
    top: 3px;
}

.cart-item-image-multiple img:nth-child(3) {
    position: absolute;
    left: auto;
    z-index: 0;
    width: 38px;
    right: -20px;
    top: 6px;
}

.sk-order-container .cart-item {
    align-items: center;
}

.cart-item-title a small {
    color: var(--gray-dark) !important;
    font-weight: 500;
    font-size: 13px;
}

.shop-order-info-address {
    padding: 30px;
    border: 1px solid var(--grayPlusColor);
    border-radius: 10px;
    font-size: 13px;
}

.shop-order-info-address h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--redColor);
}

.shop-order-pay-detail {
    display: flex;
    align-items: center;
}

.shop-order-pay-detail .banka-img {
    border: 2px solid var(--grayColor);
    border-radius: 8px;
    margin-right: 10px;
}

.table-pay-m {
    margin-top: 20px;
    margin-bottom: 0;
}

.table.table-pay-m > :not(caption) > * > * {
    padding: 10px 0;
    border-bottom-width: 1px;
    border-color: var(--grayColor)
}

.table.table-pay-m > :not(:last-child) > :last-child > * {
    border-bottom: 2px solid var(--grayPlusColor);
}

.table.table-pay-m > tfoot > :last-child > * {
    border-bottom: 0;
    font-size: 14px;
}

.alert-secondary {
    background-color: var(--grayColor);
    border-color: var(--grayColor);
}

.alert-ship-box {
    border-radius: 8px;
    align-items: center;
    display: flex;
}

.alert-ship-box > .row {
    width: 100%;
    align-items: center;
}

.alert-ship-box .ship-logo {
    max-width: 120px;
    border-radius: 8px;
}

.mt-sm-3 {
    margin-top: 0 !important;
}

@media (max-width: 567px) {
    .mt-sm-3 {
        margin-top: 10px !important;
    }
}

.table-installment-item {
    position: relative;
    margin-bottom: 30px;
}

.table-installment-item .table-installment-head {
    background-color: var(--grayColor);
    text-align: center;
    padding: 5px;
}

.table-installment-item .table-installment-head img {
    height: 30px;
    width: auto;
}

.table-installment-item .table-installment-list {
    width: 100%;
    font-size: 13px;
}

.table-installment-item .table-installment-list td, .table-installment-item .table-installment-list th {
    border: 1px solid var(--grayColor);
    padding: 5px;
    text-align: center;
}

.product-search-list {
    padding-bottom: 20px;
}

.sk-container {
    position: relative;
    min-height: 120px;
}

.sk-container-box {
    padding-bottom: 20px;
}

.detail-content {
    line-height: 1.7;
    padding-bottom: 30px;
}

.sk-side-box {
    position: relative;
    border-radius: 10px;
    border: 1px solid #eeeff0;
    padding: 20px;
    margin-bottom: 30px;
}

.sk-side-body ul.sk-side-menu {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.sk-side-body ul.sk-side-menu > li {
    padding-bottom: 5px;
}

.sk-side-body ul.sk-side-menu > li:nth-last-child(1) {
    padding-bottom: 0;
}

.sk-side-body ul.sk-side-menu a {
    display: block;
    padding: 10px 10px;
    background-color: var(--grayColor) !important;
    color: var(--darkColor) !important;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
}

.sk-side-body ul.sk-side-menu a:hover, .sk-side-body ul.sk-side-menu a.active {
    background-color: var(--grayPlusColor) !important;
}

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

.img-cover {
    margin-bottom: 30px;
    border-radius: 10px;
}

.sk-gallery-item {
    position: relative;
    margin-bottom: 20px;
}

.sk-gallery-item .sk-gallery-item-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.sk-gallery-item .sk-gallery-item-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    opacity: 0.4;
    background: rgb(34, 31, 31);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.sk-gallery-item:hover .sk-gallery-item-img:before {
    opacity: 0.9;
}

.sk-gallery-item .sk-gallery-item-img a {
    position: relative;
    display: block;
    z-index: 10;
}

.sk-gallery-item .sk-gallery-item-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.sk-gallery-item:hover .sk-gallery-item-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.4;
}

.sk-gallery-item .sk-gallery-item-icon {
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    font-weight: 400;
    background: var(--redColor);
    color: #fff;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    border: none;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.sk-gallery-item:hover .sk-gallery-item-icon {
    opacity: 1;
    visibility: visible;
}


.sk-side-body ul.sk-side-blog {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.sk-side-body ul.sk-side-blog > li {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}

.sk-side-body ul.sk-side-blog > li:nth-last-child(1) {
    padding-bottom: 0;
}

.sk-side-body ul.sk-side-blog > li .sk-side-blog-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.sk-side-body ul.sk-side-blog > li .sk-side-blog-img :before {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    opacity: 0;
    background: rgb(34, 31, 31);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.sk-side-body ul.sk-side-blog > li:hover .sk-side-blog-img :before {
    opacity: 0.5;
}

.sk-side-body ul.sk-side-blog > li .sk-side-blog-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.sk-side-body ul.sk-side-blog > li:hover .sk-side-blog-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
}

.sk-side-body ul.sk-side-blog > li .sk-side-blog-content {
    width: calc(100% - 60px);
}

.sk-side-body ul.sk-side-blog > li .sk-side-blog-content h3 {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}

.form-check-label {
    max-width: calc(100% - 30px);
}


/*VİDEO İÇERİK*/
.video-sk-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

.video-sk-item:before {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    opacity: 0;
    background: rgb(34, 31, 31);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.video-sk-item:hover:before {
    opacity: 0.6;
}

.video-sk-item .video-sk-img {
    position: relative;
    background-color: #ccc;
}

.video-sk-item .video-sk-cover {
    position: absolute;
    width: calc(100% + 80px);
    height: auto;
    left: -40px;
    top: -40px;
    background-color: #000;
}

.video-sk-item > a {
    position: relative;
    display: block;
    z-index: 10;
}

.video-sk-item .video-sk-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 30px;
    background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 34%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 34%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 34%, rgba(0, 0, 0, 0) 100%);
}

.video-sk-item .video-sk-content h2, .video-sk-item .video-sk-content h3 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}

.video-sk-item .video-sk-cover img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.video-sk-item:hover .video-sk-cover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.5;
}

.video-sk-icon {
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    font-weight: 400;
    background: var(--redColor);
    color: #fff;
    font-size: 24px;
    line-height: 54px;
    text-align: center;
    vertical-align: middle;
    border: none;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.video-sk-item:hover .video-sk-icon {
    opacity: 1;
    visibility: visible;
}


.video-sk-frame {
    position: relative;
    margin-bottom: 30px;
}

.video-sk-frame iframe {
    width: 100% !important;
    height: calc(100vh * 9 / 18) !important;
    max-height: 460px;
    border-radius: 10px;
}


.sk-side-body ul.sk-side-video {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    max-height: 360px;
    overflow: hidden;
}

.sk-side-body ul.sk-side-video .sk-side-video-item {
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--grayColor);
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sk-side-body ul.sk-side-video .sk-side-video-item:hover, .sk-side-body ul.sk-side-video .sk-side-video-item.active {
    background-color: var(--grayPlusColor);
}

.sk-side-body ul.sk-side-video .sk-side-video-item .sk-side-video-img {
    width: 30%;
    overflow: hidden;
    margin-right: 10px;
    position: relative;
    border-radius: 6px;
}


.sk-side-body ul.sk-side-video .sk-side-video-item .sk-side-video-img .side-video-sk-cover {
    position: absolute;
    width: calc(100% + 80px);
    height: auto;
    left: -40px;
    top: -40px;
    background-color: #000;
}

.sk-side-body ul.sk-side-video .sk-side-video-item .sk-side-video-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.sk-side-body ul.sk-side-video .sk-side-video-item:hover .sk-side-video-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
}

.sk-side-body ul.sk-side-video .sk-side-video-item .sk-side-video-img .side-video-sk-img {
    position: relative;
    background-color: #ccc;
}

.sk-side-body ul.sk-side-video .sk-side-video-item .sk-side-video-img .side-video-sk-cover img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.sk-side-body ul.sk-side-video .sk-side-video-item:hover .sk-side-video-img .side-video-sk-cover img, .sk-side-body ul.sk-side-video .sk-side-video-item.active .sk-side-video-img .side-video-sk-cover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.8;
}

.sk-side-body ul.sk-side-video .sk-side-video-item .sk-side-video-content {
    width: calc(70% - 10px);
}

.sk-side-body ul.sk-side-video .sk-side-video-item .sk-side-video-content h3 {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}

.sk-side-body ul.sk-side-video .sk-side-video-item:hover .video-sk-icon, .sk-side-body ul.sk-side-video .sk-side-video-item.active .video-sk-icon {
    opacity: 1;
    z-index: 11;
    visibility: visible;
    width: 34px;
    height: 34px;
    margin-left: -17px;
    margin-top: -17px;
    line-height: 38px;
    font-size: 16px;
}

.sk-side-body ul.sk-side-blog.sk-other-vid-blog > li .sk-side-blog-img {
    width: 50px;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

/*VİDEO İÇERİK*/


.google-maps-box {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.google-maps-box iframe {
    width: 100% !important;
    height: calc(100vh * 9 / 24) !important;
    min-height: 360px;
    border-radius: 10px;
}

.contact-form-container textarea {
    height: 140px !important;
}

.contact-form-container {
    padding: 50px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 567px) {
    .contact-form-container {
        padding: 15px;
    }
}

.sk-404-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 991px) {
    .sk-404-container {
        padding-top: 140px;
        padding-bottom: 30px;
    }
}


/*HOME VIDEO*/
.home-video-blog {
    padding: 50px 0 0;
}

.home-video-blog .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}

.home-video-blog .swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.home-video-blog .swiper-slide-active + .swiper-slide {
    opacity: 1;
    visibility: visible;
}

.home-video-blog .swiper-slide-active + .swiper-slide + .swiper-slide {
    opacity: 1;
    visibility: visible;
}

.home-video-blog .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1329px) {
    .home-video-blog .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 1199px) {
    .home-video-blog .swiper-slide-active + .swiper-slide + .swiper-slide {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 767px) {
    .home-video-blog .swiper-slide-active + .swiper-slide + .swiper-slide {
        opacity: 0;
        visibility: hidden;
    }
}

.grecaptcha-badge {
    display: none !important;
}

.card {
    border: 1px solid var(--grayPlusColor);
    border-radius: 10px;
    overflow: hidden;
}

.card-footer {
    padding: 12px 15px;
    background-color: var(--grayColor);
    border-top: 1px solid var(--grayPlusColor);
}

.card-body {
    padding: 30px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .card-body {
        padding: 1rem;
    }
}

.card-body h1, .card-body h2, .card-body h3, .card-body h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hidecontent {
    height: 320px;
    overflow: hidden;
    position: relative;
}
.hidecontent::after {
    position: absolute;
    width: 100%;
    height: 45px;
    background: #8d5e02;
    background: linear-gradient( 180deg,rgba(141,94,2,0) 0%,rgba(255,255,255,1) 76%);
    content: "";
    bottom: 0;
}

.sk-detail-content {
    font-size: 15px;
    padding: 30px;
    border: 1px solid #eeeff0;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    margin-bottom: 20px;
}

.home-detail {
    margin-bottom: 50px;
}

.home-detail h2 {
    font-size:1.2rem;
}

.sk-detail-content h1, .sk-detail-content h2, .sk-detail-content h3, .sk-detail-content h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sk-detail-content p:nth-last-child(1) {
    margin-bottom: 0;
}

.sk-detail-content.active {
    overflow: auto;
    display: block;
}

.sk-detail-all-btn {
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    background-color: var(--grayColor);
    border-radius: 4px;
    transition: all 0.5s;
    padding: 4px 8px;
    font-weight: bold;
    margin-top: 10px;
}

.sk-detail-all-btn:hover {
    background-color: var(--grayPlusColor);
}

.accordion-button {
    box-shadow: none !important;
    outline: none !important;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    color: var(--darkColor);
    font-weight: bold;
    background-color: var(--grayColor);
    box-shadow: none !important;
    outline: none !important;
}

@media (max-width: 1330px) {
    .prime-product-container, .collective-product-container, .home-video-blog-container {
        overflow: hidden;
    }
}


/*ACCORDION*/
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 28px 80px 24px 30px;
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #212529;
    text-align: left;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    transition: all 500ms ease;
}

.accordion-item {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px !important;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(21, 44, 105, 0.06);
    transition: all 500ms ease;
    border: none !important;
    padding: 0 !important;
}

.accordion-item:nth-last-child(1) {
    margin-bottom: 0;
}

.accordion-body {
    padding: 0px 30px 30px;
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-button::after {
    position: absolute;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 500ms ease;
    top: 0;
    right: 6px;
    background: none !important;
    content: "\ea61";
    font-family: 'icomoon', sans-serif;
    font-size: 26px;
}

.btn-whatsapp {
    display: inline-block;
    border: 0;
    position: relative;
    padding: 0;
    font-size: 28px;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 15px;
    overflow: hidden;
    width: 325px;
}

.btn-whatsapp-body {
    padding: 12px 20px 8px 82px;
    border-radius: 0 0 6px 6px;
    background-color: var(--grayColor);
    transition: all 0.5s;
}

.btn-whatsapp .btn-whatsapp-icon {
    position: absolute;
    font-size: 38px;
    background-color: var(--greenColor);
    left: -2px;
    top: -2px;
    width: 72px;
    height: calc(100% + 4px);
    color: #fff;
    text-align: center;
    line-height: 78px;
    padding-left: 4px;
}

.btn-whatsapp span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.5s;
}

.btn-whatsapp h4 {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    color: var(--greenColor);
    transition: all 0.5s;
}


.btn-whatsapp:hover .btn-whatsapp-body {
    background-color: var(--greenColor);
    color: #fff;

}

.btn-whatsapp:hover span {
    color: #fff;
}

.btn-whatsapp:hover h4 {
    color: #fff;
}

@media (max-width: 1330px) {
    .btn-whatsapp {
        width: 311px;
    }
}

@media (max-width: 767px) {
    .btn-whatsapp {
        width: 301px;
    }
}

.areas-box {
    position: relative;
    background-color: var(--grayColor);
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}


.areas-box .areas-title h2 {
    font-size: 16px;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    align-items: center;
    padding-right: 30px;
}

.areas-box .areas-body {
    width: 100%;
}



.areas-swiper {
    overflow: hidden;
}

.areas-swiper .swiper-slide {
    display: inline-block;
    width: auto;
}

.areas-swiper .areas-item {
    background-color: #fff !important;
    white-space: nowrap;
    padding: 15px 20px 15px 25px;
    display: inline-block;
    color: var(--darkColor);
    transition: all 0.5s;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    min-width: 220px;
}
.areas-swiper .areas-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}


.areas-swiper .areas-item:before {
    display: block;
    content: '';
    position: absolute;
    width: 3px;
    left: 10px;
    top: 8px;
    bottom: 8px;
    background-color: var(--yellowColor);
    transition: all 0.5s;
    border-radius: 3px;
    z-index: 1;
}

.areas-swiper .areas-item:hover:before {
    right: 10px;
    width: calc(100% - 20px);
}

@media(max-width: 767px) {
    .areas-box {
        display: block;
    }

    .areas-box .areas-title h2 {
        margin-bottom: 15px;
        text-align: center;
        padding-right: 0;
    }
    .areas-box .areas-body {
        display: flex;
    }

    .areas-swiper .areas-item h3 {
        font-size: 15px;
    }
    .areas-swiper .areas-item {
        min-width: 200px;
    }
}

.productselector {
    position: relative;
    /*background-image: url("/assets/images/toprak-bg.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0;
}

.product-selector {
    position: relative;
}

.pr-info-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
}

.product-selector-intro {
    background-color: var(--grayColor);
    display: flex;
    border-radius: 10px;
    align-content: center;
    align-items: center;
}

.product-selector-intro .into-selector-content {
    width: 65%;
    position: relative;
    padding: 80px 50px;
    font-size: 18px; line-height: 1.7;
}
.product-selector-intro .into-selector-img {
    width: 35%;
    padding: 20px;
}

.product-selector-intro .into-selector-content p {
    margin-bottom: 30px;
}


.product-selector-intro .into-selector-content h3 {
    font-size: 40px; font-weight: 900; margin-bottom: 20px;
}

.detector-selector-box {
    position: relative;
    background-color: var(--grayColor);
    padding: 50px;
    border-radius: 10px;
}

.detector-selector-nav {
    position: relative;
    display: flex;
    align-items: center;
    align-content: stretch;
    justify-content: center;
    border-bottom:1px solid var(--grayPlusColor);
}

.detector-selector-nav>div {
    text-align: center;
    font-size: 16px;
    padding: 10px;
    font-weight: bold;
    color: var(--darkColor);
    opacity: 0.3;
    min-width: 100px;
    position: relative;
}

.detector-selector-nav>div:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: -1px;
    left: 50%;
    margin-left:-15px;
    background-color: var(--darkColor);
}

.detector-selector-nav>div h4 {
    font-size: 12px; font-weight: 500;
    margin: 5px 0;
    text-transform: uppercase;
}

.detector-selector-nav>div.active {
    color: var(--greenColor);
    opacity: 1;
    font-weight: bold;
}

.detector-selector-nav>div.active h4 {
    font-weight: bold;
}

.detector-selector-nav>div.active:after {
    background-color: var(--greenColor);
}

.detector-selector-nav>div.active ~ div {
    color: var(--darkColor);
    opacity: 0.95;
}

.detector-selector-step {
    padding: 50px 0 0;
    visibility: hidden;
    opacity: 0;
    display: none;
    transition: all 0.5s;
}

.detector-selector-step.active {
    visibility: visible;
    display: block;
    opacity: 1;
}

.detector-selector-step h3 {
    font-size: 22px; text-align: center; margin: 50px 0 50px; line-height: 1.7;
}


.detector-selector-items {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: stretch;
    margin-left: -15px;
    margin-right: -15px;
    justify-content: center;
}

.detector-selector-items .detector-selector-item {
    width: calc((100% / 4) - 30px);
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin: 15px;
    border:3px solid transparent;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.detector-selector-items .detector-selector-item>* {
    width: 100%;
}

.detector-selector-items .detector-selector-item h5 {
    font-size: 14px; font-weight: 600;
    text-transform: uppercase;
    padding: 15px 10px;
}

.detector-selector-items:hover .detector-selector-item {
    opacity: 0.7;
}
.detector-selector-items .detector-selector-item:hover {
    opacity: 1;
}

.detector-selector-items .detector-selector-item.active {
    border:3px solid var(--blueColor);
    color: var(--blueColor);
}

@media (max-width: 991px) {
    .detector-selector-items .detector-selector-item {
        width: calc((100% / 3) - 20px);
        margin:10px;
    }

    .detector-selector-step h3 {
        font-size: 20px;
        margin: 30px 0 30px;
    }

    .detector-selector-items .detector-selector-item h5 {
        padding: 15px 0;
    }

    .detector-selector-step {
        padding: 30px 0 0;
    }

    .detector-selector-box {
        padding: 30px;
    }

}
@media(max-width: 767px) {
    .product-selector-intro {
        flex-direction: column-reverse;
    }

    .product-selector-intro .into-selector-img {
        width: 100%;
        padding: 40px;
    }

    .product-selector-intro .into-selector-content {
        width: 100%;
        padding: 30px;
        font-size: 16px;
    }

    .product-selector-intro .into-selector-content h2 {
        font-size: 30px;
    }

    .detector-selector-items .detector-selector-item {
        width: calc((100% / 2) - 20px);
    }

    .detector-selector-nav {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
    }
    .detector-selector-box {
        padding: 15px;
    }
}

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

.df-alert {
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 500;
}

.dsc-warning {
    color: var(--yellowColor) !important;
}


.statictools {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 9999999;
}

.statictools .btn-st-whatsapp {
    width: 60px;
    height: 60px;
    line-height: 64px;
    text-align: center;
    background-color: var(--greenColor);
    color: #fff;
    font-size: 32px;
    transition: all 0.5s;
    border:0 !important;
    border-radius: 50%;
}

.statictools .btn-st-whatsapp::after {
    display: none !important;
}

.statictools .dropdown-menu {
    position: absolute;
    background: transparent;
    min-width: 300px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transform: translateY(80px) scale(0.9);
    transition: all .3s;
    margin-bottom: 15px;
    border:none;
    box-shadow: none !important;
    padding-bottom: 0;
}

.statictools .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(15) scale(1);
    right: auto;
    left: 0;
    bottom:0;
}


.statictools .dropdown-menu .whatsapp-st-container {
    box-shadow: 0 8px 25px -5px rgb(45 62 79 / 15%);
    background: white;
    border-radius: 6px;
    position: relative;
}

.statictools .dropdown-menu .whatsapp-st-container:before, .statictools .dropdown-menu .whatsapp-st-container:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 18px;
    width: 13px;
    height: 13px;
    background: white;
    transform: rotate(45deg);
    z-index: 0;
    border: 1px solid #fff;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 2%);
}

.whatsapp-st-head {
    display: flex;
    background-color: var(--greenColor);
    padding: 20px;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 6px 6px 0 0;
}

.whatsapp-st-head .st-icon {
    padding: 0 15px 0 0;
    font-size: 42px;
}
.st-list {
    padding: 15px;
    list-style: none;
}

.st-list li {
    border-bottom: 1px solid var(--grayColor);
}

.st-list li:nth-last-child(1) {
    border-bottom: 0;
}

.st-list li>a {
    display: flex;
    padding: 15px;
    font-size: 1.1rem;
    line-height: 1.1;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
}
.st-list li>a:hover {
    background-color: var(--grayColor);
    color: var(--greenColor);
}

.st-list li>a span {
    font-size: 13px;
    font-weight: 400;
    color: rgba(0,0,0,0.7);
}

.st-list li>a .st-list-item-icon {
    color: var(--greenColor);
    font-size: 32px;
    padding-right: 15px;
}

.modal .modal-body {
    min-height: 250px;
    padding: 50px 30px;
}

@media (max-width: 991px) {
    .modal .modal-body .content-prev-box {
        margin-left: -30px;
        margin-right: -30px;
    }
}

.fancybox-container {
    z-index: 9999999;
}

.modal-fullscreen {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
}

.body-overflow-hidden {
    overflow: hidden !important;
}

.str_link b {
    color: var(--redColor) !important;
}

.top-bar {
    height: 50px;
    background-color: #00DBDE;
    background-image: linear-gradient(90deg, #00DBDE 0%, #400db7 53%, #00dbde 100%);
    animation:slidebg 4s linear infinite;
    position: relative;
    top:0;
    left: 0;
    width: 100%;
    z-index: 10003;
    display: none;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1.4;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
.top-bar a {
    color:#fff !important;
}
.top-bar .top-bar-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
}

body.top-bar-opened .top-bar {
    display: flex;
}

body.top-bar-opened .wsmobileheader {
    top: 50px;
}

@keyframes slidebg {
    to {
        background-position:100vw;
    }
}
body.top-bar-opened .main-slider {
    padding-top: 230px;
}

@media (max-width: 991px) {
    .top-bar {
        position: fixed;
    }

    body.top-bar-opened .main-slider {
        padding-top: 190px;
    }
}

.main-slider.landing-page-cover {
    background-color: #202749;
    background-image: url("/assets/images/intro-bottom.svg");
    background-size: 100%;
    background-position: center bottom;
    padding-bottom: 160px;
}

body.top-bar-opened .main-slider.landing-page-cover {
    padding-top: 270px;
}

@media(max-width: 991px) {
    body.top-bar-opened .main-slider.landing-page-cover {
        padding-top: 200px;
        padding-bottom: 100px;
    }
}

.intro-row {
    --gap-padding:50px;
    display:flex;
    flex-wrap: wrap;
    width: 100%;
    gap:var(--gap-padding);
}

.intro-row>.intro-col {
    width: calc(50% - (var(--gap-padding) * 1 / 2));
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 oranı için %56.25 yükseklik ayarı (9 / 16 * 100) */
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.iframe-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0; /* İframe kenarlığını kaldırır */
}

.main-slider.landing-page-cover h1 {
    font-size: 48px; font-weight: bold;
}
.main-slider.landing-page-cover h1 strong {
    color:var(--redColor);
}
.main-slider.landing-page-cover h2 {
    font-size: 28px; font-weight: 500;
    margin-bottom: 30px;
}

.main-slider.landing-page-cover p {
    font-size: 16px;
    line-height: 1.7;
}

.dtr-styled-heading {
    max-width: 760px;
    margin: 0 auto 40px;
}

.dtr-styled-heading h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.dtr-styled-heading p {
    font-size: 16px;
    color: #999999;
}

@media (max-width: 1329px) {
    .main-slider.landing-page-cover h1 {
        font-size: 42px;
    }
    .main-slider.landing-page-cover h2 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .main-slider.landing-page-cover h1 {
        font-size: 36px;
    }
    .intro-row>.intro-col {
        width: 100%;
    }
    .intro-row>.intro-col:nth-child(1) {
        text-align: center;
    }

    .dtr-styled-heading h2 {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .main-slider.landing-page-cover h1 strong {
        display: block;
    }
    .dtr-styled-heading h2 {
        font-size: 26px;
    }
}

.smcatitem {
    border-radius: 4px;
    padding: 15px;
    background-color: var(--grayColor);
    color: var(--darkColor);
    font-size: 18px;
    font-weight: bold;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.five-col-slider {
    overflow: hidden;
}
.five-col-slider .swiper-slide {
    width: calc((100% / 4) - 30px);
}

@media (max-width: 1330px) {
    .smcatitem {
        font-size: 16px;
        padding: 12px;
    }
    .five-col-slider .swiper-slide {
        width: calc((100% / 4) - 30px);
    }
}

@media (max-width: 1199px) {
    .five-col-slider .swiper-slide {
        width: calc((100% / 3) - 50px);
    }
}

@media (max-width: 991px) {
    .smcatitem {
        font-size: 15px;
    }
    .five-col-slider .swiper-slide {
        width: calc((100% / 2.5));
    }
}

@media (max-width: 529px) {
    .five-col-slider .swiper-slide {
        width: calc((100% / 1.5));
    }
}

.collage-content {
    padding: 15px 30px 15px;
    list-style: none;
    margin: 0;
}

@media (max-width: 767px) {
    .collage-content {
        padding: 15px 0 15px;
    }
}

.collage-content li {
    padding-bottom: 30px;
}

.collage-content li:nth-last-child(1) {
    padding-bottom: 0;
}

.collage-content h3 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 22px;
}

.collage-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #707070;
    margin-bottom: 0;
}

.smcont {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 18px;
}