﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');
@charset "UTF-8";

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --text-gray: #909090;
    --green: #00712F;
    --red: #C90C0F;
    ;
    --grayscale-dark: #3C3C3C;
    --system-blue: #3E76E8;
    --light-gray: #DCDCDC;
    --semi-gray: #909090;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#loader {
    display: none;
    background: #ffffff;
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: 0.6;
}

.sellerContainer {
    border-color: #A6ACAF;
    background: white;
    border-radius: 8px;
}

    .sellerContainer:hover {
        background-color: #A6ACAF;
    }

.greyHoverBtn {
    color: #A6ACAF;
    border-color: #A6ACAF;
    background: white;
    border-radius: 8px;
}

    .greyHoverBtn:hover {
        color: white;
        background-color: #A6ACAF;
    }

.btn-dark-green {
    box-shadow: none;
    background-color: var(--green) !important;
    border-color: var(--green) !important;
    color: white !important;
    font-weight: 500;
    -moz-transition: all .1s ease-in;
    /* WebKit */
    -webkit-transition: all .1s ease-in;
    /* Opera */
    -o-transition: all .1s ease-in;
    /* Standard */
    transition: all .1s ease-in;
}

.btn-red {
    box-shadow: none;
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    color: white !important;
    font-weight: 500;
    -moz-transition: all .1s ease-in;
    /* WebKit */
    -webkit-transition: all .1s ease-in;
    /* Opera */
    -o-transition: all .1s ease-in;
    /* Standard */
    transition: all .1s ease-in;
}

.btn-green {
    box-shadow: none;
    background: rgba(72, 185, 90, 0.08);
    border-color: rgba(72, 185, 90, 0.08);
    color: #48B95A;
    font-weight: 500;
    -moz-transition: all .1s ease-in;
    /* WebKit */
    -webkit-transition: all .1s ease-in;
    /* Opera */
    -o-transition: all .1s ease-in;
    /* Standard */
    transition: all .1s ease-in;
}

.btn-orange {
    box-shadow: none;
    background: rgba(255, 153, 0, 0.08);
    border-color: rgba(255, 153, 0, 0.08);
    color: #FF9900;
    font-weight: 500;
    -moz-transition: all .1s ease-in;
    /* WebKit */
    -webkit-transition: all .1s ease-in;
    /* Opera */
    -o-transition: all .1s ease-in;
    /* Standard */
    transition: all .1s ease-in;
}

.btn-gray {
    box-shadow: none;
    background-color: #f3f3f3;
    border-color: #f3f3f3;
    color: var(--grayscale-dark);
    font-weight: 500;
    -moz-transition: all .1s ease-in;
    /* WebKit */
    -webkit-transition: all .1s ease-in;
    /* Opera */
    -o-transition: all .1s ease-in;
    /* Standard */
    transition: all .1s ease-in;
}

.btn-red-disabled {
    background: rgba(201, 12, 15, 0.08);
    border-radius: 8px;
    color: var(--red);
    border-color: transparent;
    font-weight: 500;
    padding: 10px;
    cursor: no-drop;
}

.btn-red-outline {
    background-color: white;
    border-color: var(--red);
    color: var(--red);
    font-weight: 500;
    -moz-transition: all .1s ease-in;
    /* WebKit */
    -webkit-transition: all .1s ease-in;
    /* Opera */
    -o-transition: all .1s ease-in;
    /* Standard */
    transition: all .1s ease-in;
}

    .btn-red-outline:hover {
        background-color: var(--red);
        color: white;
    }

.btn-red:hover {
    background-color: white;
    color: var(--red);
}

a {
    text-transform: none !important;
    text-decoration: none !important;
}

/** WEB SITE CSS CODES **/
header {
    background-color: #FAFAFA;
}

    header .headerTop {
        background-color: var(--grayscale-dark);
        padding: 8px 12px;
        color: white;
        padding-top: 7px;
        padding-bottom: 10px;
    }

        header .headerTop .dropdown-toggle {
            background: none;
            border: none;
            padding: 0;
            font-size: 13px !important;
            color: white !important;
        }

            header .headerTop .dropdown-toggle img {
                margin-right: 10px;
                border-radius: 4px;
                width: 25px;
            }

        header .headerTop ul#rightMenu {
            float: right;
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

            header .headerTop ul#rightMenu li {
                float: left;
                margin: 0px 5px;
            }

                header .headerTop ul#rightMenu li a {
                    font-size: 13px;
                    color: white;
                    padding: 0px 5px;
                    text-transform: none;
                    text-decoration: none;
                    font-weight: 400;
                }

        header .headerTop .headerMapButton {
            background-color: #FF2F4F;
            border-radius: 4px;
            padding: 5px !important;
        }

        header .headerTop .headerBidButton {
            background-color: var(--system-blue);
            border-radius: 4px;
            padding: 5px !important;
        }

        header .headerTop .headerBuyButton {
            background-color: var(--green);
            border-radius: 4px;
            padding: 5px !important;
        }

        header .headerTop .headerSaleButton {
            background-color: var(--red);
            border-radius: 4px;
            margin-right: 0px;
            padding: 5px !important;
        }

.headerCategoryButton {
    background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1));
    border-radius: 4px;
    padding: 5px !important;
}

    .headerCategoryButton img, .headerCategoryButton label {
        background: none !important;
        color: white !important;
    }

    .headerCategoryButton:hover {
        background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1));
        border-radius: 4px;
        padding: 5px !important;
    }

header .headerTop .headerBuyButton img,
header .headerTop .headerSaleButton img,
header .headerTop .headerBidButton img,
header .headerTop .headerMapButton img {
    width: 20px;
    margin-right: 5px
}

header .mainHeader {
    padding: 15px 0px;
}

    header .mainHeader #searchBox {
        color: var(--text-gray);
        font-size: 14px;
        border-left: none !important;
        background-color: transparent;
    }

    header .mainHeader #basic-addon1-searchBox {
        background: none;
        border-right: none;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    header .mainHeader #searchOkButton {
        border-color: #DCDCDC;
        background: #DCDCDC;
        color: #909090;
        padding: 10px 30px;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

header .focusButton {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    color: white !important;
}

header .focusAddon {
    border-bottom-left-radius: 0px !important;
}

header .focusAddon,
.focusSearchBox {
    border-color: var(--red) !important;
}

header .ihaleHeaderButton {
    background: transparent;
    border: 1px solid var(--system-blue);
    color: var(--system-blue);
    padding: 10px 25px;
    border-radius: 8px;
}

header .ilanOlusturHeaderButton {
    color: var(--red);
    border-color: var(--red);
    background: white;
    padding: 10px 28px;
    border-radius: 8px;
}

.ilanOlusturHeaderButton:hover {
    color: white;
    background-color: var(--red);
}

header .dropdownBuyButton {
    background-color: var(--green);
    color: white;
    padding: 10px 13px;
    border-radius: 8px;
    text-transform: none;
    text-decoration: none;
    min-width: 150px;
    font-size: 12px;
    position: absolute;
    text-align: center;
}

header .dropdownSaleButton {
    background-color: var(--red);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-transform: none;
    text-decoration: none;
    min-width: 150px;
    font-size: 12px;
    margin-top: 15px;
    position: absolute;
    text-align: center;
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
    background: #fff;
}

.btn-secondary:hover {
    border-color: #565e64;
}

.btn-product-create:hover {
    border-color: var(--red);
    color: var(--red);
}

header .navbar-collapse .nav-item :hover {
    color: var(--red);
    background-color: white;
}

header .dropdownBuyButton img,
header .dropdownSaleButton img {
    margin-right: 10px;
}

header ul.ilanOlusturdropdown {
    min-width: 144px;
    background: transparent;
    transform: none !important;
    margin-top: 41px !important;
}

header .ilanOlusturdropdown li:first-child {
    margin-bottom: 25px;
}

header .profileHeaderWeb {
    background-color: white;
    width: 100%;
    border-color: var(--light-gray);
    color: var(--grayscale-dark);
    padding: 5.5px 8px;
    padding-right: 30px;
    border-radius: 8px;
}

    header .profileHeaderWeb:hover::after, header .profileHeaderWeb:hover .text p:nth-child(2) {
        color: #333 !important;
    }

    header .profileHeaderWeb::focus .profileHeaderWeb::after {
        color: white !important;
    }

.btn-secondary:focus header .profileHeaderWeb::after {
    color: var(--red) !important;
}

header .profileHeaderWeb::after {
    position: absolute;
    right: 9px;
    top: 20px;
    color: var(--grayscale-dark);
}

header .profileHeaderWeb .avatarWeb {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

header .profileHeaderWeb .text {
    text-align: left;
}

    header .profileHeaderWeb .text p {
        line-height: 5px;
    }

        header .profileHeaderWeb .text p:first-child {
            margin-top: 5px;
            font-size: 13px;
        }

        header .profileHeaderWeb .text p:nth-child(2) {
            font-size: 10px;
            color: var(--red);
            margin-top: -5px;
            font-weight: 600;
            margin-bottom: -15px;
        }

header .profileHeaderWeb .notificationBox {
    background-color: var(--red);
    width: 18px;
    height: 18px;
    float: left;
    margin-top: 5px;
    text-align: center;
    line-height: 18px;
    font-size: 8px;
    color: white;
    border-radius: 100%;
}

header .megaMenus {
    background-color: #F3F3F3;
    height:65px !important;
    width: 100%;
}

    header .megaMenus .megamenu {
        margin: 0 auto;
    }

    header .megaMenus nav {
        padding: 0;
    }

    header .megaMenus .navbar-dark .navbar-nav .nav-link {
        color: var(--grayscale-dark);
        padding: 15px 26px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
    }

    header .megaMenus .dropdown-toggle::after {
        display: none;
    }

.navbar .megamenu {
    padding: 1rem;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }
}

/* ============ desktop view .end// ============ */


.btn-check:focus + .btn-secondary, .btn-secondary:focus {
    color: #3c3c3c !important;
    border-color: var(--light-gray);
}

.profileHeaderWeb:hover {
    background: white;
    color: #3c3c3c !important;
    border-color: var(--light-gray);
}

header .col-megamenu h6 {
    margin: 0;
    color: #101010 !important;
    font-weight: 500;
}

header .list-unstyled li a {
    font-size: 13px;
    color: var(--grayscale-dark);
    text-decoration: none !important;
}

#storyModalLabel {
    font-size: 14px;
}

#storyModal button {
    background-color: var(--red);
    color: white;
    border-color: var(--red);
}

#storyModal .btn-close {
    display: none;
}

header .list-unstyled li a:hover {
    color: var(--red);
}

header .megaBg {
    -webkit-box-shadow: 0px 13px 20px rgba(48, 48, 48, 0.1);
    -moz-box-shadow: 0px 13px 20px rgba(48, 48, 48, 0.1);
    box-shadow: 0px 13px 20px rgba(48, 48, 48, 0.1);
    border-radius: 0px 0px 8px 8px;
    padding: 20px;
}

header .navbar-collapse .show {
    background-color: white;
    color: var(--red) !important;
}

header .megaBg .headerMegaMenuBanner a {
    color: white;
    font-size: 12px;
}

header .megaBg .headerMegaMenuBanner {
    background-position: center center;
    background-size: 120%;
    border-radius: 8px;
}

    header .megaBg .headerMegaMenuBanner .content {
        padding: 10px 20px;
        border-radius: 8px;
        background: rgb(54, 54, 54);
        background: linear-gradient(90deg, rgba(54, 54, 54, 0.5) 0%, rgba(0, 212, 255, 0) 100%);
        height: 140px;
    }

.headerMegaMenuBanner .content p, .headerMegaMenuBanner .content b {
    background: none !important;
    color: white !important;
}

header .dynamicSearchWeb {
    width: 443px;
    z-index: 99;
    position: absolute;
    background: white;
    margin-top: -17px;
    border: 1px solid red;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 15px;
    overflow: hidden;
    display: none;
    -webkit-box-shadow: 0px 13px 20px rgba(48, 48, 48, 0.3);
    -moz-box-shadow: 0px 13px 20px rgba(48, 48, 48, 0.3);
    box-shadow: 0px 13px 20px rgba(48, 48, 48, 0.3);
}

    header .dynamicSearchWeb h6 {
        font-size: 12px;
    }

    header .dynamicSearchWeb p {
        margin: 0;
        padding: 5px 10px;
        margin-bottom: 5px;
        border-radius: 8px;
    }

        header .dynamicSearchWeb p:hover {
            background-color: #F3F3F3;
        }

    header .dynamicSearchWeb a {
        color: var(--grayscale-dark);
        font-size: 12px;
    }

.homeStory {
    margin-top: 15px;
    margin-bottom: 15px;
}

    .homeStory .col-md-1 {
        width: 10%;
    }

    .homeStory .item .image {
        width: 70px;
        height: 70px;
        border-radius: 100%;
        margin: 0 auto;
        background-repeat: no-repeat;
        ;
        background-size: 110%;
    }

    .homeStory .item p {
        font-size: 12px;
        text-align: center;
        color: var(--grayscale-dark);
        margin-top: 5px;
        font-weight: 500;
    }

    .homeStory .item:hover p {
        color: var(--red) !important;
    }

.homeSlider .carousel-inner h5 {
    width: 60%;
    text-align: left;
    bottom: 100px !important;
    position: absolute;
    font-weight: 300;
    color: #FFDDCC;
    font-size: 23px;
}

.homeStry .item:hover p {
    color: var(--red) !important;
}

.owl-item {
    width: 110px !important;
}

.owl-stage {
    width: 3000px !important;
}

.homeStry .item:hover img {
    border-color: var(--red) !important;
}

.homePageCategories h5 {
    color: var(--grayscale-dark);
    font-size: 17px;
}

.homePageCategories a {
    color: white;
    text-transform: none;
    text-decoration: none;
}

.homePageCategories .bg {
    border-radius: 8px;
}

.homePageCategories .box {
    background: rgb(54, 54, 54);
    background: linear-gradient(90deg, rgba(54, 54, 54, 0.5) 0%, rgba(0, 212, 255, 0) 100%);
    border-radius: 8px;
    padding: 25px;
    -webkit-transition: background .5s ease-out;
    -moz-transition: background 4.5 ease-out;
    -o-transition: background .5s ease-out;
    transition: background .5s ease-out;
}

    .homePageCategories .box:hover {
        background-position: 308px;
    }

.homePageCategories p {
    font-size: 13px;
}

.homePageCategories b {
    font-weight: 500;
    font-size: 13px;
}

.headerMegaMenuBanner .box {
    border-radius: 8px;
    padding: 25px;
}


.homepageHightligths .single .red_heart {
    display: block;
    opacity: .8;
}

.homepageHightligths .single:hover > .red_heart {
    display: block !important;
    visibility: visible;
}

.homepageHightligths .single .red_heart {
    transition: visibility 0s, opacity 0.5s linear;
    background-repeat: no-repeat;
    background-position: center center;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background-image: url('../images/icons/favorites_hearth_red.svg');
    float: right;
    right: 15px;
    top: 15px;
    margin-bottom: -51px;
    z-index: 999;
    position: relative;
    cursor: pointer;
    background-color: #f9dedd;
    border-radius: 100%;
    background-size: 15px;
    -webkit-box-shadow: 0px 0px 46px -13px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 46px -13px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 46px -13px rgba(0, 0, 0, 1);
    display: none;
}

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

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

.homepageHightligths a {
    color: var(--grayscale-dark);
    text-transform: none;
    text-decoration: none;
}

.homepageHightligths .single {
    width: 100%;
    padding: 10px;
    overflow-x: hidden;
    border: 1px solid white;
    border-radius: 8px;
    transition: border-color .5s ease;
    box-sizing: content-box;
}

.homepageHightligths .item:hover .single {
    border: 1px solid var(--red);
}

.homepageHightligths .single:hover > .favorites_Hearth {
    display: block !important;
    visibility: visible;
}

.homepageHightligths .row:first-child h5 {
    font-size: 17px;
    color: var(--dark);
}

.homepageHightligths .row .img img {
    border-radius: 8px;
    width: 100%;
}

.homepageHightligths .row .content .ico {
    width: 45px;
    float: left;
}

.homepageHightligths .content .type {
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 10px;
}

.homepageHightligths .content .sum_text {
    color: var(--grayscale-dark);
    font-size: 13px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.homepageHightligths .content h6 {
    font-size: 15px;
    margin-top: 7px;
}

    .homepageHightligths .content h6 span {
        color: var(--semi-gray) !important;
        font-weight: lighter;
        font-size: 13px;
    }

.homepageHightligths .content .bottom_text {
    font-size: 12px;
    color: var(--semi-gray);
    font-weight: lighter;
    margin-top: -2px;
}

    .homepageHightligths .content .bottom_text b {
        font-weight: 500 !important;
    }

.homepageHightligths .single .favorites_Hearth {
    transition: visibility 0s, opacity 0.5s linear;
    background-repeat: no-repeat;
    background-position: center center;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background-image: url('../images/icons/favorites_hearth_null.svg');
    float: right;
    right: 15px;
    top: 15px;
    margin-bottom: -51px;
    z-index: 999;
    position: relative;
    cursor: pointer;
    background-color: #f9dedd;
    border-radius: 100%;
    background-size: 15px;
    -webkit-box-shadow: 0px 0px 46px -13px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 46px -13px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 46px -13px rgba(0, 0, 0, 1);
    display: none;
}

.bidTabs .nav-tabs {
    border: none;
}

    .bidTabs .nav-tabs .nav-link {
        color: var(--semi-gray);
        border-bottom: 2px solid white;
        border-color: white;
    }

        .bidTabs .nav-tabs .nav-link:hover {
            background-color: var(--red);
            color: white !important;
            border-color: white;
        }

        .bidTabs .nav-tabs .nav-link.active,
        .bidTabs .nav-tabs .nav-item.show .nav-link {
            border: none;
            color: var(--red);
            border-bottom: 2px solid var(--red);
        }

.bidTabs .tab-content {
    margin-top: 10px;
}

    .bidTabs .tab-content .item {
        border: 1px solid var(--light-gray);
        padding: 15px 20px;
        border-radius: 8px;
        transition: border-color .5s ease;
        margin-bottom: 15px;
    }

        .bidTabs .tab-content .item:hover {
            border-color: var(--red);
        }

.bidTabs .mainImg img {
    border-radius: 8px;
    width: 140px;
}

.bidTabs .tab-content .item label {
    color: var(--semi-gray);
    font-size: 13px;
}

.bidTabs .tab-content .item p {
    font-size: 13px;
    color: var(--dark);
}

.bidTabs .tab-content .detailBtn {
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--semi-gray);
    border-radius: 8px;
    color: var(--semi-gray);
    padding: 10px 15px;
    text-transform: none;
    text-decoration: none;
    margin-top: 13px;
    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
    transition: color 500ms ease;
}

    .bidTabs .tab-content .detailBtn:hover {
        /*background:var(--semi-gray) !important;*/
        background-color: transparent !important;
        color: var(--grayscale-dark);
    }

.bidTabs .tab-content .content {
    padding-top: 13px;
}

.bidTabs .tab-content .contentButton {
    padding-top: 24px;
}

.bidTabs .tab-content .offerBtn {
    color: white;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--red);
    border-radius: 8px;
    background-color: var(--red);
    padding: 10px 15px;
    text-transform: none;
    text-decoration: none;
    margin-top: 13px;
    -webkit-transition: background-color 1s linear;
    -ms-transition: background-color 1s linear;
    transition: background-color 1s linear;
    transition: color 500ms ease;
}

    .bidTabs .tab-content .offerBtn:hover {
        background: white !important;
        color: var(--red) !important;
    }

.bidTabs .tab-content hr {
    color: #DCDCDC;
    border-color: #DCDCDC;
    background-color: #DCDCDC;
    width: 97%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.bidTabs .tab-content .bottomContent p {
    color: var(--semi-gray);
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.bidTabs .tab-content .bottomContent img {
    margin-right: 8px;
}

.bidTabs .tab-content .bottomContent .fieldText {
    float: left;
    width: 100px;
    font-size: 13px;
    color: var(--semi-gray);
}

.bidTabs .tab-content .bottomContent .date {
    font-size: 13px;
    color: var(--semi-gray);
}

.bidTabs .viewAll {
    text-align: right;
    float: right;
    text-decoration: none;
    text-transform: none;
    font-size: 13px;
    font-weight: 500;
}

    .bidTabs .viewAll img {
        width: 6px;
        margin-left: 8px;
    }

footer {
    background-color: #FAFAFA !important;
    padding: 50px !important;
    color: var(--grayscale-dark);
    margin-top: 50px !important;
}

    footer .colon {
        width: 20%;
    }

        footer .colon h4 {
            font-size: 14px;
            font-weight: 500;
        }

    footer .dotted ul {
        list-style-type: none !important;
        margin: 0;
        padding: 0;
    }

        footer .dotted ul li a {
            font-size: 13px;
            color: var(--grayscale-dark);
            -webkit-transition: all .2s;
            -moz-transition: all .2s;
            -o-transition: all .2s;
            transition: all .2s;
        }

            footer .dotted ul li a:hover {
                color: var(--red) !important;
                font-weight: bold;
            }

    footer .footerSocialHead {
        font-size: 11px;
    }

    footer .footerSocialLinks {
        list-style-type: none;
    }

        footer .footerSocialLinks li {
            float: left;
            margin-right: 10px;
        }

            footer .footerSocialLinks li a {
                color: var(--semi-gray) !important;
            }

                footer .footerSocialLinks li a:hover {
                    color: var(--red) !important;
                }

    footer .footerBottom {
        color: var(--grayscale-dark);
        font-size: 12px;
        margin-top: 20px;
    }

        footer .footerBottom p {
            padding: 0;
            margin: 0;
        }

        footer .footerBottom hr {
            color: var(--grayscale-dark);
            border-color: var(--grayscale-dark);
            background-color: var(--grayscale-dark);
            width: 97%;
            margin: 0 auto;
            margin-top: 10px;
            margin-bottom: 30px;
        }

.modal {
    z-index: 999999999999 !important;
}






.overlay,
.sideMenu {
    position: fixed;
    bottom: 0
}

.overlay {
    top: 0;
    left: -100%;
    right: 100%;
    margin: auto;
    background-color: rgba(0, 0, 0, .7);
    z-index: 998;
    transition: all ease 20ms
}

.sideMenu,
.sidebarNavigation {
    z-index: 999;
    margin-bottom: 0
}

.overlay.open {
    left: 0;
    right: 0
}

.sidebarNavigation .left-navbar-toggle {
    float: left;
    margin-right: 0;
    margin-left: 6px
}

.sideMenu {
    left: -100%;
    transition: all ease-in-out .4s;
    overflow: hidden;
    top: 0;
    width: 100%;
    max-width: 70%;
    background: white;
    padding: 15px;
}

.profileWebDropdown {
    min-width: 225px;
    margin-left: -91px !important;
}

    .profileWebDropdown .active {
        background-color: #F3F3F3;
        border-radius: 8px;
    }

.sideMenu.open {
    left: 0;
    display: block;
    overflow-y: auto
}

.sideMenu ul {
    margin: 0;
    margin-top: 20px;
}

    .sideMenu ul li a {
        font-size: 14px;
        color: var(--grayscale-dark);
        border-bottom: 1px solid #F3F3F3;
        padding: 15px 0px;
    }

    .sideMenu ul li .show {
        position: relative !important;
        transform: none !important;
    }

    .sideMenu ul li .dropdown-menu {
        width: 100%;
        background-color: #F3F3F3;
        padding-left: 20px;
        border-radius: 8px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        padding-top: -20px;
    }

.nav-link:hover,
.nav-link:focus {
    color: #3c3c3c;
}

.sideMenu ul li .dropdown-menu li a {
    padding: 5px 0px;
}

.sideMenu ul li .arrow_right {
    float: right;
}

.sideMenu .dropdown-toggle::after {
    display: none;
}

ul.mobileRightTopMenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: right;
    margin-top: 9px;
}

    ul.mobileRightTopMenu li {
        float: left;
        margin-left: 10px;
    }


.mobileSearchScreen {
    display: none;
    width: 100%;
    position: fixed;
    height: 100%;
    background-color: white;
    top: 80px;
    z-index: 990;
}

    .mobileSearchScreen .mobileSearchBox {
        padding: 10px;
        padding-left: 50px;
        border-radius: 8px;
        color: var(--grayscale-dark);
    }

        .mobileSearchScreen .mobileSearchBox:focus {
            border-color: var(--red) !important;
        }

.mobileSearchCloseButton {
    width: 50px;
    line-height: 43px;
    text-align: center;
    height: 43px;
    z-index: 99;
    margin-top: -43px;
}

.mobileSearchScreen #searchResult a {
    font-size: 13px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
    margin: 10px 0px;
    color: var(--grayscale-dark);
}

.profileWebDropdown {
    box-shadow: 0px 13px 20px rgba(48, 48, 48, .5);
    -webkit-box-shadow: 0px 13px 20px rgba(48, 48, 48, .5);
    padding: 20px;
    border-radius: 8px;
    border-top-right-radius: 0px;
    transform: none !important;
    margin-top: 57px !important;
}



    .profileWebDropdown li {
        padding: 8px;
    }

        .profileWebDropdown li a img {
            margin-right: 10px;
        }

        .profileWebDropdown li a {
            color: var(--grayscale-dark);
            font-size: 14px;
            text-decoration: none !important;
        }

            .profileWebDropdown li a div {
                float: right;
                width: 20px;
                color: white;
                font-size: 10px;
                height: 20px;
                background-color: var(--red);
                line-height: 20px;
                text-align: center;
                border-radius: 100%;
            }

.triangle-bottom-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 17px 17px;
    border-color: transparent transparent #fff transparent;
    right: 0;
    position: absolute;
    margin-top: -37px;
}


.registerLogin .loginscreen {
    width: 500px;
    margin: 0 auto;
    border: 1px solid #DCDCDC;
    background-color: white;
    padding: 30px;
}

.loginscreen ul {
    border: none;
    background-color: #F3F3F3;
    padding: 10px;
    padding-bottom: 12px;
    border-radius: 4px;
}

    .loginscreen ul li button {
        border: none !important;
        width: 100%;
        border-radius: 8px;
        padding: 15px;
    }

    .loginscreen ul li {
        border: none;
        width: 50%;
    }

        .loginscreen ul li .active {
            color: var(--red) !important;
            border-radius: 8px;
        }

        .loginscreen ul li .nav-link {
            color: var(--grayscale-dark);
        }



.iconInputType {
    position: relative;
    color: #909090;
    padding-top: 22px;
    margin-top: -10px;
}

    .iconInputType .inputText {
        width: 100%;
        width: 100%;
        color: var(--grayscale-dark);
        outline: none;
        border: none;
        box-shadow: none !important;
        border: 1px solid #DCDCDC;
        border-radius: 8px;
        padding: 15px;
        padding-left: 49px;
        font-size: 13px;
        padding-top: 25px;
        padding-bottom: 10px;
        transition: border 0.2s ease-in-out !important;
        font-weight: bold;
    }

        .iconInputType .inputText:focus {
            border: 1px solid var(--red);
        }

    .iconInputType .floating-label {
        position: absolute;
        pointer-events: none;
        top: 39px;
        left: 50px;
        transition: 0.2s ease all;
        font-size: 14px;
    }

    .iconInputType input:focus ~ .floating-label,
    .iconInputType input:not(:focus):valid ~ .floating-label {
        top: 29px;
        color: #909090;
        font-size: 10px;
        opacity: .8;
    }

.input-icons i {
    position: absolute;
}

.icon {
    padding: 10px;
    min-width: 40px;
}

.input-field {
    width: 100%;
    padding: 10px;
    padding-left: 50px;
}

.registerLogin .btn-red {
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    letter-spacing: .5px;
}

.registerLogin .forgot {
    font-size: 13px;
}

    .registerLogin .forgot:hover {
        color: var(--red);
        font-weight: bold;
    }

.registerLogin .register_info_text {
    font-size: 13px;
    color: var(--semi-gray);
}

.registerLogin .hrBlank {
    width: 100%;
    height: 1px;
    background-color: #DCDCDC;
}

.registerLogin .or {
    color: var(--semi-gray);
    text-align: center;
    font-size: 14px;
    background: white;
    padding: 15px;
    margin: 0 auto;
    width: 100px;
    margin-top: -25px;
}

.registerLogin .btn-login-social-facebook {
    border: 1px solid #4C6EA8;
    border-radius: 8px;
    padding: 15px;
    color: #4C6EA8;
    font-weight: 500;
    background-color: rgba(76, 110, 168, 0.05);
}

.registerLogin .btn-login-social-google {
    border: 1px solid #F14236;
    border-radius: 8px;
    padding: 15px;
    color: #F14236;
    font-weight: 500;
    background-color: rgba(241, 66, 54, 0.05);
    cursor: pointer;
}

.registerLogin .SocialLogins button:hover {
    background-color: white !important;
}

.registerLogin .btn-login-social-facebook img,
.registerLogin .btn-login-social-google img {
    margin-right: 10px;
}

.alert-danger {
    border: 1px solid #DC2626;
    border-radius: 8px;
    color: #DC2626;
    font-size: 14px;
}

    .alert-danger img {
        margin-right: 10px;
        margin-top: -2px;
    }

.toggle-password {
    cursor: pointer;
    float: right;
    margin-top: -34px;
    overflow: hidden;
    position: relative;
    right: 14px;
}

.inputIconLeft {
    position: absolute;
    left: 0;
    top: 40px;
    left: 20px;
}

.breadcrumb {
    list-style-type: none;
    margin: 0;
    padding:
}

    .breadcrumb li {
        float: left;
    }

        .breadcrumb li::after {
            background-image: url(../images/icons/chevron_breadcrumb.svg);
            width: 20px;
            height: 26px;
            background-repeat: no-repeat;
            background-position: center center;
            content: " ";
            position: relative;
            display: block;
            float: right;
            margin-right: 5px;
        }

        .breadcrumb li:last-child a {
            font-weight: bold;
        }

        .breadcrumb li:last-child::after {
            background: yellow !important;
            display: none;
        }

        .breadcrumb li a {
            color: var(--grayscale-dark);
            font-size: 12px;
            text-transform: none;
            text-decoration: none;
            margin-right: 10px;
        }

#carouselproductDetail {
    padding: 10px;
    border: 1px solid #F3F3F3;
    border-radius: 8px;
}

.productDetailSlider .carousel-indicators {
    width: 100%;
    margin: 0;
    padding: 0;
}

    .productDetailSlider .carousel-indicators button {
        width: 20%;
        padding: 10px;
        background-color: white !important;
        height: auto
    }

        .productDetailSlider .carousel-indicators button img {
            border-radius: 8px;
        }

.productDetailSlider #carouselproductDetail .carousel-inner {
    padding: 10px;
    border-radius: 8px;
}

    .productDetailSlider #carouselproductDetail .carousel-inner img {
        border-radius: 8px;
    }

.productDetailRightContent .location {
    margin-bottom: 2px;
}

    .productDetailRightContent .location a {
        font-size: 13px;
        color: var(--semi-gray);
    }

.productDetailRightContent .title {
    font-size: 20px;
    color: var(--grayscale-dark);
    padding: 0;
    font-weight: 700;
}

.productDetailRightContent .type-sale {
    color: var(--red);
    background: rgba(201, 12, 15, 0.08);
    padding: 5px 15px;
    border-radius: 8px;
    float: left;
    width: auto;
    font-size: 12px;
}

.productDetailRightContent .type-buy {
    color: var(--green);
    background: rgba(72, 185, 90, 0.08);
    padding: 5px 15px;
    border-radius: 8px;
    float: left;
    width: auto;
    font-size: 12px;
    margin-left: 10px;
}

.productDetailRightContent .stock {
    color: var(--green);
    background: rgba(72, 185, 90, 0.08);
    padding: 5px 15px;
    border-radius: 8px;
    float: left;
    width: auto;
    font-size: 12px;
    margin-left: 10px;
}

.productDetailRightContent .type-sale img,
.productDetailRightContent .type-buy img {
    margin-top: -2px;
    margin-left: 10px;
}

.productDetailRightContent .deletingFavorite {
    font-size: 13px;
    cursor: pointer;
}

    .productDetailRightContent .deletingFavorite img {
        width: 15px;
        margin-top: -2px;
        margin-right: 5px;
    }

.productDetailRightContent .price {
    color: var(--red);
    font-size: 20px;
    margin: 0;
    font-weight: bold;
}

    .productDetailRightContent .price span {
        color: var(--semi-gray);
        font-weight: lighter;
        font-size: 14px;
    }

.productDetailRightContent .discountBox-red {
    margin-top: 10px;
    color: var(--red);
    padding: 5px 15px;
    background: rgba(201, 12, 15, 0.08);
    border-radius: 8px;
    width: auto;
    display: inline-block;
    float: right;
    font-size: 13px;
    margin-left: 10px;
}

.productDetailRightContent .discountBox-green {
    margin-top: 20px;
    color: var(--green);
    padding: 5px 15px;
    background: rgba(72, 185, 90, 0.08);
    border-radius: 8px;
    width: auto;
    display: inline-block;
    float: right;
    font-size: 13px;
    margin-left: 10px;
}

.productDetailRightContent .minPiece {
    font-size: 13px;
    color: var(--semi-gray);
}

.productDetailRightContent hr {
    background-color: var(--semi-gray) !important;
    margin: .5rem 0;
}

.productDetailRightContent .actionButtons .btn-red {
    padding: 10px;
    text-align: center;
    width: 100%;
    border-radius: 8px;
}

.productDetailRightContent .actionButtons .btn-red-outline {
    padding: 10px;
    text-align: center;
    width: 100%;
    border-radius: 8px;
}

.productDetailRightContent .contentUL .col-md-1 {
    padding-right: 0px;
    padding-top: 3px;
}

.productDetailRightContent .contentUL .col-md-11 {
    padding-left: 0px;
}

    .productDetailRightContent .contentUL .col-md-11 label,
    .productDetailRightContent .contentUL .col-md-10 label {
        color: var(--semi-gray);
        font-size: 13px;
    }

    .productDetailRightContent .contentUL .col-md-11 p,
    .productDetailRightContent .contentUL .col-md-10 p {
        color: var(--grayscale-dark);
        font-size: 13px;
    }

.productDetailRightContent .information {
    background-color: #FAFAFA;
    border-radius: 8px;
    padding: 15px 15px;
    font-size: 13px;
}

    .productDetailRightContent .information .col-md-1 {
        padding-right: 0px;
        text-align: center;
    }

    .productDetailRightContent .information .col-md-11 {
        padding-left: 0px;
    }

        .productDetailRightContent .information .col-md-11 .title_1 {
            color: var(--semi-gray);
        }

.comments .nav-tabs .nav-link:hover,
.comments .nav-tabs .nav-link:focus {
    border: none;
    font-size: 13px;
}

.comments .nav-tabs .nav-link.active,
.comments .nav-tabs .nav-item.show .nav-link,
.comments .nav-tabs .nav-link.active:hover,
.comments .nav-tabs .nav-item.show .nav-link:hover {
    border-color: transparent;
    font-size: 13px;
    color: var(--grayscale-dark);
}

.comments .nav-tabs {
    border: none;
    background-color: #F3F3F3;
    border-radius: 4px;
    padding: 8px;
    padding-bottom: 9px;
    display: inline-flex;
}

.comments .nav-link {
    font-size: 13px;
    color: var(--grayscale-dark);
}

.comments .nav-tabs .nav-link {
    padding: 10px 35px;
    border-radius: 8px;
    border: none;
}

    .comments .nav-tabs .nav-link.active {
        color: var(--red) !important;
        padding: 10px 35px;
        border-radius: 8px;
        border: none;
    }

.comments .boX {
    background-color: #FAFAFA;
    padding: 15px;
    border-radius: 2px;
}

.comments .rightInfo .capsule {
    font-size: 13px;
    color: #909090;
    background-color: white;
    float: right;
    padding: 10px 20px;
    text-align: right;
    border-radius: 8px;
}

    .comments .rightInfo .capsule b {
        color: var(--grayscale-dark);
        margin-right: 15px;
    }

    .comments .rightInfo .capsule div {
        color: var(--green);
        background: rgba(72, 185, 90, 0.08);
        border-radius: 8px;
        padding: 5px;
        width: auto;
        display: inline-block;
    }

.comments #nav-content {
    padding: 20px 5px;
    font-size: 13px;
    color: var(--grayscale-dark);
}

.comments #nav-offers {
    padding: 20px 5px;
    font-size: 13px;
    color: var(--grayscale-dark);
}

.orange-bg {
    background: rgba(255, 153, 0, 0.08);
    border-color: rgba(255, 153, 0, 0.08);
    color: #FF9900;
    width: auto;
    display: inline-block;
    border-radius: 8px;
}

.green-bg {
    background: rgba(72, 185, 90, 0.08);
    color: #48B95A;
    width: auto;
    display: inline-block;
    border-radius: 8px;
}

.comments #nav-comments .green-bg {
    background: rgba(72, 185, 90, 0.08);
    color: #48B95A;
    width: auto;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
}

    .comments #nav-comments .green-bg p {
        padding: 0;
        margin: 0;
    }

.comments #nav-offers .green-bg {
    background: rgba(72, 185, 90, 0.08);
    color: #48B95A;
    width: auto;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
}

    .comments #nav-offers .green-bg p {
        padding: 0;
        margin: 0;
    }

.comments .bg {
    background-color: white;
    margin: 10px 0px;
    border-radius: 8px;
    padding: 20px 35px 10px 10px;
}

    .comments .bg .avatar .avatarImg {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        background-size: 120%;
        background-repeat: no-repeat;
        background-position: center center;
        margin: 0 auto;
    }

    .comments .bg .rate {
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 100%;
        overflow: hidden;
    }

    .comments .bg small {
        color: #909090;
        font-size: 13px;
    }

    .comments .bg .titleComment {
        color: var(--grayscale-dark);
        margin: 0;
        padding: 0;
        margin-bottom: -3px;
    }

    .comments .bg .rate li {
        float: left;
        margin-right: 2px;
        color: var(--semi-gray);
        font-size: 12px;
    }

        .comments .bg .rate li:last-child {
            margin-left: 10px;
            margin-top: 4px;
        }

    .comments .bg .message {
        font-size: 13px;
        color: var(--grayscale-dark);
        margin-top: 10px;
    }

    .comments .bg .report {
        float: right;
        text-align: right;
        font-size: 13px;
        color: var(--red) !important;
    }

.sticky-top {
    z-index: 1;
}


.searchPage .searchSidebar ul {
    list-style-type: none;
    border: none;
    padding: 0;
    margin: 0;
    max-height: 160px;
    overflow-y: scroll;
}

    .searchPage .searchSidebar ul li {
        margin-bottom: 3px;
    }

.searchPage .searchSidebar .filterItem b {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.searchPage .searchSidebar .filterItem div {
    margin-top: 1px;
    font-size: 13px;
    margin-left: 5px;
    float: left;
}

.searchPage .searchSidebar .filterItem input[type=text] {
    font-size: 13px !important;
    border-radius: 8px !important;
}

.searchPage .searchSidebar .filterItem input[type=number] {
    border-radius: 8px !important;
    font-size: 13px !important;
    border: 1px solid #DCDCDC;
    color: var(--grayscale-dark);
}

.searchPage .btn-filter {
    color: var(--grayscale-dark);
    padding: 8px 15px;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    margin-top: -12px;
    margin-right: -15px;
}

.searchPage .dropdown-menu {
    border: 1px solid #DCDCDC;
    box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    -webkit-box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    border-radius: 8px;
    padding: 15px;
}

    .searchPage .dropdown-menu a {
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 2px;
    }

        .searchPage .dropdown-menu a:hover {
            background: rgba(201, 12, 15, 0.08);
            color: var(--red);
        }

    .searchPage .dropdown-menu .active {
        background: rgba(201, 12, 15, 0.08);
        border-radius: 8px;
    }

        .searchPage .dropdown-menu .active a {
            color: var(--red) !important;
        }

            .searchPage .dropdown-menu .active a:after {
                width: 20px;
                right: 22px;
                height: 20px;
                position: absolute;
                content: " ";
                background-image: url(../images/icons/checkbox_red.svg);
                background-repeat: no-repeat;
                background-position: center center;
                background-size: 15px;
            }

.searchPage .btn-filter img {
    margin-left: 10px;
}

.searchPage .btn-filter:after {
    display: none;
}

input[type=checkbox] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    outline: none;
    content: none;
    float: left;
}

    input[type=checkbox]:before {
        font-family: "FontAwesome";
        content: "";
        font-size: 15px;
        color: transparent !important;
        background: #fff;
        display: block;
        width: 20px;
        height: 20px;
        border: 1px solid #DCDCDC;
        border-radius: 2px;
        margin-right: 7px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 13px;
    }

    input[type=checkbox]:checked:before {
        border-color: var(--red);
        background-image: url(../images/icons/checkbox_red.svg);
        color: black !important;
    }

.pl-0 {
    padding-left: 0px !important;
}

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

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

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

.resultForSearchTerms {
    font-size: 13px;
}

    .resultForSearchTerms span {
        color: var(--semi-gray) !important;
        font-weight: lighter;
    }

.mobileShowFilterButton {
    right: 17px;
    position: absolute;
    z-index: 999;
    display: none;
}


.notificationItem {
    box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    -webkit-box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    border-radius: 8px;
    padding: 15px 10px;
    border: 1px solid #f3f3f3;
    margin-bottom: 10px;
}

    .notificationItem a {
        font-size: 13px;
    }

    .notificationItem .date {
        text-align: right;
        color: #909090 !important;
    }

        .notificationItem .date img {
            margin-left: 15px;
        }


.messagesSection #nav-incoming,
.messagesSection #nav-posted {
    max-height: 502px;
    overflow-y: scroll;
}

.messagesSection .active {
    border-color: var(--green);
}

.messagesSection .messageItem:hover {
    border: 1px solid var(--red);
}

.messageItem {
    padding: 16px;
    background: #FAFAFA;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    margin-bottom: 10px;
    padding-bottom: 0;
    cursor: pointer;
    zoom: 90%;
}

    .messageItem img {
        width: 50px;
        height: 50px;
        float: left;
        border-radius: 100%;
    }

    .messageItem .name {
        font-weight: 600;
        color: var(--grayscale-dark);
    }

    .messageItem .color-red {
        font-weight: 600;
        color: var(--red) !important;
    }

    .messageItem .left {
        float: left;
        font-size: 13px;
    }

    .messageItem .right {
        float: right;
        font-size: 11px;
    }

        .messageItem .right span {
            margin-left: 10px;
        }

        .messageItem .right .timing {
            color: #909090;
        }

    .messageItem p {
        font-size: 13px;
        color: var(--grayscale-dark);
        margin-top: 5px;
    }

    .messageItem .bottomField a {
        font-weight: 400;
        text-decoration: underline;
    }

    .messageItem hr {
        background-color: #DCDCDC;
        border-color: #DCDCDC;
        margin: .5rem 0;
    }

    .messageItem .noti {
        width: 15px;
        height: 15px;
        background: #DC2626;
        color: white;
        font-size: 8px;
        line-height: 15px;
        text-align: center;
        float: right;
        border-radius: 100%;
        margin-top: 4px;
    }

    .messageItem .payment-status {
        float: left;
    }

.messageInnerActive {
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    width: 100%;
}

    .messageInnerActive .header {
        background-color: #FAFAFA;
        padding: 10px;
        border-bottom: 1px solid #DCDCDC;
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        padding-bottom: 0px;
    }

    .messageInnerActive ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .messageInnerActive ul li {
            float: left;
            margin-left: 10px;
            font-size: 13px;
        }

            .messageInnerActive ul li a {
                font-size: 13px;
                padding: 5px 15px !important;
                height: 30px;
                line-height: 30px;
                padding: 0px 15px !important;
                font-weight: 400 !important;
            }

    .messageInnerActive .avatar {
        width: 55px;
        height: 55px;
        border-radius: 100%;
    }

    .messageInnerActive .header h5 {
        font-size: 14px;
        margin: 0;
        padding: 0;
        margin-top: 10px;
    }

    .messageInnerActive .header small {
        font-size: 11px;
        color: #909090;
    }

    .messageInnerActive hr {
        width: 97.5%;
        border-color: #DCDCDC;
        background-color: #DCDCDC;
        margin: 0 auto;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .messageInnerActive .headerBottom {
        font-size: 13px;
    }

        .messageInnerActive .headerBottom a {
            text-decoration: underline;
            color: var(--red) !important;
        }

.messageInnerBalloons {
    background-color: white;
    min-height: 350px;
    padding: 10px;
    max-height: 350px;
    overflow-y: scroll;
    overflow-x: hidden;
}

    .messageInnerBalloons .first .img {
        text-align: center;
        position: relative;
    }

    .messageInnerBalloons .first img {
        width: 30px;
        height: 30px;
        border-radius: 100%;
        margin: 0 auto;
        position: absolute;
        bottom: 7px;
    }

    .messageInnerBalloons .first .message {
        font-size: 13px;
        border: 1px solid #DCDCDC;
        padding: 15px;
        border-radius: 8px;
        color: var(--grayscale-dark);
        margin-top: 7px;
        margin-bottom: 7px;
        overflow: hidden;
    }

    .messageInnerBalloons .first .date {
        color: var(--semi-gray);
        font-size: 11px;
        float: right;
        padding-bottom: 10px;
        margin-top: 15px;
    }

    .messageInnerBalloons .second .message {
        font-size: 13px;
        border: 1px transparent;
        padding: 15px;
        border-radius: 8px;
        color: var(--grayscale-dark);
        margin-top: 7px;
        margin-bottom: 7px;
        overflow: hidden;
        background-color: rgba(72, 185, 90, 0.08);
    }

    .messageInnerBalloons .second .date {
        color: var(--semi-gray);
        font-size: 11px;
        float: right;
        padding-bottom: 10px;
        margin-top: 15px;
    }

.messageInnerActive .writeamessage {
    padding: 15px;
    font-size: 13px;
    border-radius: 8px;
}


.myIlans .header {
    background-color: #FAFAFA;
    border-radius: 8px;
    padding: 10px 30px;
}

.myIlans ul:first-child {
    list-style-type: none;
    margin: 0;
    background-color: white;
    padding: 10px;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    width: auto;
    display: inline-block;
}

    .myIlans ul:first-child li {
        float: left;
    }

.myIlans ul li {
    margin-right: 25px;
    font-size: 12px;
}

    .myIlans ul li b {
        font-weight: 600 !important;
    }

    .myIlans ul li div {
        display: contents;
        position: relative;
    }

.myIlans .applyButton {
    margin-top: -23px;
    margin-bottom: -21px;
    padding: 9.5px 20px;
    margin-right: -50px;
}

.myIlans .btn-filter {
    float: right;
    margin-top: 2px;
}

.filesMultiProductUpload a {
    padding: 5px 10px;
    border: 1px solid #DCDCDC;
    margin-right: 10px;
    font-size: 13px;
    border-radius: 8px;
    color: var(--grayscale-dark);
}

.myIlans .content {
    background-color: #FAFAFA;
    padding: 10px;
    margin-top: 20px;
}

    .myIlans .content .img img {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }

    .myIlans .content b {
        font-weight: 500 !important;
    }

    .myIlans .content h5 {
        font-size: 13px;
        font-weight: 400;
        margin-bottom: 0px;
        margin-top: 5px;
    }

.myIlans .subInfo {
    font-size: 12px !important;
    padding: 0;
    margin: 0;
    margin-top: 5px;
}

    .myIlans .subInfo .color-green,
    .myIlans .subInfo .color-red {
        margin-right: 15px;
    }

.myIlans .price {
    font-size: 13px;
    color: var(--grayscale-dark);
    margin-top: 5px;
}

    .myIlans .price span {
        font-weight: lighter !important;
        color: var(--semi-gray);
    }

.myIlans .rates p {
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 13px;
}

.myIlans .messages {
    font-size: 13px;
    font-weight: 500;
    margin-top: 25px;
}

.myIlans .edit {
    text-align: right;
    padding-top: 25px;
}

    .myIlans .edit a {
        font-size: 13px;
        border: 1px solid #DCDCDC;
        border-radius: 8px;
        padding: 10px;
        color: var(--grayscale-dark);
    }

        .myIlans .edit a img {
            width: 15px;
            margin-right: 2px;
        }

.myIlans .doping {
    padding-top: 25px;
}

    .myIlans .doping a {
        font-size: 13px;
        border-radius: 8px;
        padding: 10px 8px;
        color: var(--red);
        background: rgba(201, 12, 15, 0.08);
    }

.myIlans .edit .trash {
    border: none;
}

.myIlans .singularItem {
    border-bottom: 1px solid #F3F3F3;
    padding-bottom: 15px;
    padding-top: 15px;
}

    .myIlans .singularItem:hover {
        background-color: white;
    }

.myPoints {
    padding: 30px 20px;
    padding-bottom: 40px;
    border-radius: 8px;
    border: 1px solid #F3F3F3;
    font-size: 13px;
    color: var(--grayscale-dark);
}

.pointsPage .myBox a {
    padding: 10px 20px;
    padding-bottom: 12px;
}

.pointsPage .myBox .return {
    background-color: #F3F3F3;
    border-radius: 8px;
    color: var(--grayscale-dark);
    font-weight: 500;
}

.pointsPage .myBox .buy {
    background-color: var(--red);
    border-radius: 8px;
    color: white;
    font-weight: 500;
    margin-left: 15px;
}

.pointsPage table thead {
    background-color: #F3F3F3;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: none;
}

    .pointsPage table thead th {
        padding: 18px;
        font-weight: 600;
        color: var(--grayscale-dark);
        font-size: 13px;
    }

.pointsPage .table > :not(:first-child) {
    border-color: white;
}

.pointsPage table tbody tr td {
    font-size: 13px;
    padding: 15px 18px;
    color: var(--grayscale-dark);
}

.pointsPage table tbody tr {
    background-color: #FAFAFA;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

    .pointsPage table tbody tr:last-child {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

.pointsPage .araText h5 {
    font-size: 16px;
    color: var(--grayscale-dark);
}

.pointsPage .araText p {
    font-size: 13px;
    color: var(--grayscale-dark);
}

.pointsPage .buyPointSingularItem {
    border: 1px solid #F3F3F3;
    background: white;
    padding: 24px;
    border: 1px solid #F3F3F3;
    box-sizing: border-box;
    border-radius: 8px;
    font-size: 13px;
    color: var(--grayscale-dark);
    margin-bottom: 20px;
}

    .pointsPage .buyPointSingularItem ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .pointsPage .buyPointSingularItem .pointAmount {
        font-size: 16px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    .pointsPage .buyPointSingularItem hr {
        background-color: #c7c7c7;
    }

    .pointsPage .buyPointSingularItem ul li {
        margin: 10px 0px;
    }

        .pointsPage .buyPointSingularItem ul li img {
            width: 16px;
            margin-top: -3px;
            margin-right: 5px;
        }

    .pointsPage .buyPointSingularItem h4 {
        font-size: 18px;
        color: var(--red);
        margin-top: 20px;
        margin-bottom: 15px;
    }

        .pointsPage .buyPointSingularItem h4 span {
            font-size: 14px !important;
            color: #909090;
            font-weight: 300 !important;
        }

    .pointsPage .buyPointSingularItem a {
        width: 100%;
        padding: 10px;
    }

.pointsPage .active {
    background-color: var(--red);
}

    .pointsPage .active,
    .pointsPage .active h4,
    .pointsPage .active h4 span,
    .pointsPage hr {
        color: white !important;
    }

        .pointsPage .active ul img {
            filter: brightness(0) invert(1);
        }

        .pointsPage .active a {
            background-color: white !important;
            border-color: white !important;
            color: var(--red) !important;
        }

.pointsPage .activeText img {
    filter: brightness(0) invert(1);
}

.pointsPage .activeText {
    color: white;
    font-size: 14px;
    margin-top: 10px;
}

.incomingTeklif .bg {
    border-radius: 0;
    visibility: visible;
    border-bottom: 1px solid #F3F3F3 !important;
}

.btn-close::after {
    float: left;
    position: absolute;
    margin-left: -50px;
    margin-top: -10px;
    font-size: 13px;
}

.btn-close {
    background-image: url('../images/icons/modal_close.svg');
    background-size: 12px;
}

.modal-content {
    border: none;
    font-size: 13px;
    border-radius: 16px;
    padding: 15px;
}

.modal {
    background-color: rgba(0, 0, 0, 0.8);
}

    .modal p {
        font-size: 13px;
        color: var(--grayscale-dark);
    }

.modal-header {
    border: none;
}

.modal-footer {
    border: none;
    justify-content: flex-start;
}

.modal-body .modalTitle {
    font-size: 15px;
    color: var(--grayscale-dark);
    font-weight: 600;
}

#teklifDetail ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    #teklifDetail ul li {
        margin: 10px 0px;
    }

        #teklifDetail ul li a img {
            margin-right: 10px;
            width: 10px;
        }

.modalItemForTeklif {
    box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    -webkit-box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    border: 1px solid #DCDCDC;
    border-radius: 8px !important;
}

.pp_ColoN {
    text-align: center;
}

    .pp_ColoN p {
        font-size: 16px;
        letter-spacing: .3px;
        color: #101010;
        text-align: center;
        margin: 0;
        padding: 0;
        margin-top: 10px;
        margin-bottom: -3px;
    }

    .pp_ColoN small {
        font-size: 13px;
        color: #909090;
        text-align: center;
    }

    .pp_ColoN .pp_UseR,
    .pp_ColoN .pp_UseR_MobiLe {
        width: 96px;
        height: 96px;
        border-radius: 100%;
        cursor: pointer;
        margin: 0 auto;
        background-position: center center;
        background-size: 110%;
        background-repeat: no-repeat;
    }

.changePPpicture {
    padding: 3px 16px;
    width: auto;
    margin: 0 auto;
    background: rgba(54, 54, 54, 0.8);
    border-radius: 8px;
    color: white;
    font-size: 11px;
    margin-top: -19px !important;
    display: table;
}

.alert-success {
    color: #48B95A;
    border: 1px solid #48B95A;
    font-size: 13px;
    border-radius: 8px;
    background-color: #d4ffdb;
}

    .alert-success img {
        margin-right: 10px;
    }

.profile_fileupload {
    width: 45% !important;
    margin: 1.6%;
    margin-top: 0px;
    cursor: pointer;
    float: left;
    padding: 20px 5px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 3px;
    -webkit-transition: background 1s;
    -moz-transition: background 1s;
    -o-transition: background 1s;
    transition: background 1s;
}

    .profile_fileupload small {
        font-size: 10px;
        color: #3C3C3C;
    }

.selectedFile {
    background-size: 120%;
    background-position: center center;
}

    .selectedFile img,
    .selectedFile small {
        opacity: 0;
        z-index: -2;
    }

.profile_fileupload .deleting {
    display: none;
}

.selectedFile .deleting {
    display: block;
    padding: 2px;
    border-top-left-radius: 8px;
    width: 150px;
    border-top-right-radius: 8px;
    width: 70px;
    background: white;
    margin: 0 auto;
    margin-bottom: -20px;
    font-size: 13px;
    line-height: 20px;
    z-index: 999;
}

.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
    background-color: #c80d0f;
    border-color: #c80d0f !important;
    color: #fff;
}

#mobileMainMenuSidebarLeft .dropdown-menu.show {
    position: relative !important;
}


.languageWebMenu {
    margin-top: 6px;
    background-color: #3c3c3c;
    border-radius: 8px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    color: white;
}

    .languageWebMenu a {
        color: white;
    }

#filterClick {
    display: block;
}

.fileUploadMultiField {
    border: 1px solid #F3F3F3;
    padding: 25px;
    height: auto;
    overflow: hidden;
}

    .fileUploadMultiField .inner {
        background-color: #F3F3F3;
        border-radius: 2px;
        padding: 100px 30px;
        text-align: center;
        cursor: pointer;
        width: 100%;
    }

        .fileUploadMultiField .inner p {
            font-size: 13px;
            color: #3C3C3C;
            margin-top: 15px;
            font-weight: 500;
        }

    .fileUploadMultiField .uploadsFiles {
        width: 82.8px;
        height: 82.8px;
        overflow: hidden;
        float: left;
        padding-right: 10px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        border: 1px solid #f2f3f4;
        margin-left: 4px;
        margin-right: 4px;
        border-radius: 4px;
        cursor: pointer;
    }

        .fileUploadMultiField .uploadsFiles span {
            position: absolute;
            bottom: 0px;
            text-align: center;
            width: 100%;
            background-color: #f2f3f4;
            font-size: 10px;
            cursor: pointer;
            padding: 5px;
            border-radius: 0px;
            display: none;
        }

        .fileUploadMultiField .uploadsFiles:hover span {
            display: block;
        }

.ilanContentRight {
    background-color: #FFFFFF;
    padding: 25px;
    border: 1px solid #F3F3F3;
}





.ilanRightTitle {
    font-size: 15px !important;
    margin-top: 5px;
    font-weight: 400;
}

    .ilanRightTitle span {
        color: #909090 !important;
        font-weight: 300 !important;
    }

.NoiconInputType {
    position: relative;
    color: #909090;
    padding-top: 22px;
    margin-top: -10px !important;
}

    .NoiconInputType .inputText {
        width: 100%;
        width: 100%;
        color: var(--grayscale-dark);
        outline: none;
        border: none;
        box-shadow: none !important;
        border: 1px solid #DCDCDC;
        border-radius: 8px;
        padding: 15px;
        font-size: 13px;
        padding-top: 25px;
        padding-bottom: 10px;
        transition: border 0.2s ease-in-out !important;
        font-weight: bold;
    }

        .NoiconInputType .inputText:focus {
            border: 1px solid var(--red);
        }

    .NoiconInputType .floating-label {
        position: absolute;
        pointer-events: none;
        top: 39px;
        left: 28px;
        transition: 0.2s ease all;
        font-size: 14px;
    }

    .NoiconInputType input:focus ~ .floating-label,
    .NoiconInputType input:not(:focus):valid ~ .floating-label {
        top: 29px;
        color: #909090;
        font-size: 10px;
        opacity: .8;
    }

.btn-choosing-right button {
    height: 55px;
    border-radius: 8px;
    background: white;
    color: #3c3c3c;
    border-color: #dcdcdc;
    border-left: navajowhite;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0px;
    margin-top: 12px;
    text-align: left;
}

    .btn-choosing-right button::after {
        position: absolute;
        right: 20px;
        top: 23px;
    }

.LeftTextRightButton {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.NoiconInputType select {
    width: 100%;
    color: var(--grayscale-dark);
    outline: none;
    border: none;
    box-shadow: none !important;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    padding: 15px;
    font-size: 13px;
    padding-top: 25px;
    padding-bottom: 10px;
    transition: border 0.2s ease-in-out !important;
    font-weight: bold;
}

.selectboxForNoIcon .floating-label {
    top: 29px;
    color: #909090;
    font-size: 10px;
    opacity: .8;
}

.selectboxForNoIcon select::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #FAFAFA;
}

.ilanInformation {
    font-size: 10px;
    line-height: 15px;
    color: #909090;
    font-weight: lighter;
}

.textareaSystem {
    padding: 15px;
    color: #3C3C3C;
    font-size: 13px;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    width: 100%;
}

.ilanCheckBox {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .ilanCheckBox li {
        float: left;
        margin-bottom: 15px;
    }

        .ilanCheckBox li label, .ilanCheckBox li .ilanCheckboxClick {
            margin-right: 10px;
            font-size: 13px;
            background: #FAFAFA;
            border: 1px solid #DCDCDC;
            border-radius: 8px;
            padding: 6px 15px;
        }

    .ilanCheckBox:checked:before {
        background-color: var(--red);
    }

    .ilanCheckBox .active {
        color: var(--red);
        border-color: var(--red);
    }

    .ilanCheckBox .active {
        background: rgba(201, 12, 15, 0.08) !important;
    }

.ilanEvrakTrash {
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 37px;
}

.addEvrak,
.addDavetli {
    font-size: 12px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 600;
}

    .addEvrak img,
    .addDavetli img {
        margin-right: 10px;
        margin-top: -2px;
    }

.accordion-item {
    margin: 15px 0px;
    background-color: #FAFAFA;
    border-radius: 9px !important;
    border: 1px solid #DCDCDC !important;
    box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    -webkit-box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
}

.accordion-header {
    background-color: #fafafa;
    border: none;
    border-radius: 8px !important;
}

.accordion-button {
    border-radius: 8px !important;
    background-color: #fafafa;
    font-size: 13px;
    font-weight: 600;
}

    .accordion-button:not(.collapsed) {
        background-color: #fafafa !important;
        box-shadow: none !important;
        color: #3C3C3C;
        font-weight: 600;
        font-size: 13px;
    }

.accordion-body {
    font-size: 12px;
    font-weight: 400;
    color: #3C3C3C;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('assets/images/icons/collapse_arrow.svg') !important;
}

.accordion-button::after {
    width: .75rem;
    height: .75rem;
    background-size: .75rem;
    background-image: url('assets/images/icons/collapse_arrow.svg') !important;
}

.accordion-body hr {
    margin-top: -10px;
    background-color: #DCDCDC;
}

ul.alverProDetailListlAvantage {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;
    padding: 10px 30px;
    color: #3C3C3C;
    font-size: 13px;
    border-radius: 8px;
    padding-right: 15px !important;
}

    ul.alverProDetailListlAvantage li {
        margin: 25px 0px;
    }

        ul.alverProDetailListlAvantage li img {
            margin-right: 15px;
            width: 15px;
        }

.alverProHeadInfo {
    color: #3C3C3C;
    font-size: 14px;
}

.alverProHeadInfo2 {
    color: #3C3C3C;
    font-size: 12px;
}

.alverProHeadTitle {
    font-size: 29px;
}

.alverProPriceBox {
    background: rgba(201, 12, 15, 0.08);
    border-radius: 8px;
    font-size: 17px;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

.alverProRightPriceContactText {
    font-size: 12px;
    color: #909090;
    margin-top: 4px;
}

.alverReportsItem {
    border-radius: 8px;
    background-size: cover;
}

    .alverReportsItem .content {
        background: rgb(54, 54, 54);
        background: linear-gradient(90deg, rgba(54, 54, 54, 0.5) 0%, rgba(0, 212, 255, 0) 100%);
        padding: 20px;
        font-size: 13px;
        border-radius: 8px;
        color: white;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

.userReportsItem {
    margin: 5px 0px;
    font-size: 13px;
    font-size: 400;
    cursor: pointer;
}

    .userReportsItem img {
        margin-top: -2px;
        margin-right: 7px;
    }

    .userReportsItem .gray {
        color: #909090;
    }

    .userReportsItem .dark-black {
        color: #3C3C3C;
    }

.reportButtons button {
    float: right;
    margin-right: 0px !important;
    margin-left: 20px;
}

.alverpro .backtoMainreports {
    font-size: 12px;
    font-weight: 500;
    margin-top: -20px;
    margin-bottom: 5px;
    color: var(--red) !important;
}

    .alverpro .backtoMainreports img {
        width: 12px;
        margin-top: -2px;
        margin-right: 7px;
    }


.reportUpload img {
    margin-left: 10px;
}

.reportUpload:hover img {
    filter: brightness(0) invert(1);
}

.reportDashItem {
    border: 1px solid #F3F3F3;
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    -webkit-box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

    .reportDashItem .title {
        font-size: 15px;
        color: #3C3C3C;
        font-weight: 600;
    }

        .reportDashItem .title img {
            float: right;
        }

    .reportDashItem .rate {
        text-align: right;
        font-weight: 500;
    }

    .reportDashItem .stats label {
        color: #909090;
        font-weight: 600;
        font-size: 13px;
    }

    .reportDashItem .stats p {
        color: #3C3C3C;
        font-weight: 600;
        font-size: 13px;
    }

    .reportDashItem hr {
        background-color: #bebebe;
    }

.color-light_green {
    color: #48B95A;
}

.proReportBox {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    -webkit-box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    padding: 24px;
}

    .proReportBox .weekend .btn-filter {
        margin-right: 0px;
        color: var(--red);
        border-color: var(--red);
        float: right;
        margin-top: -30px;
    }

        .proReportBox .weekend .btn-filter img {
            width: 13px;
            margin-left: 20px;
        }

.alverpro .chartHead h3 {
    font-size: 20px;
    color: #11142D;
    margin-bottom: 0;
    padding-bottom: 0;
}

.alverpro .chartHead p {
    font-size: 13px;
    color: #909090;
}

.alverpro .chartHead .col-6:nth-child(2) {
    text-align: right;
}

.alverpro .proReportBox .col-12 hr {
    background-color: #bebebe;
    margin-bottom: 0;
}

.alverpro .frameBox {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
    -webkit-box-shadow: 0px 4px 18px rgba(48, 48, 48, 0.06);
}

    .alverpro .frameBox button {
        background-color: white;
        margin-right: 0px;
        margin-left: 10px;
        color: var(--red);
        font-weight: 600;
        margin-top: 20px;
        margin-right: 20px;
    }

.fiyatiArtanlarAzalanlar {
    background-color: #FAFAFA;
    padding: 16px;
    font-size: 13px;
    margin: 10px 0px;
    cursor: pointer;
}

    .fiyatiArtanlarAzalanlar img {
        border-radius: 8px;
    }

    .fiyatiArtanlarAzalanlar p {
        margin: 0;
        margin-bottom: 6px;
    }

    .fiyatiArtanlarAzalanlar b {
        font-weight: 600;
    }

        .fiyatiArtanlarAzalanlar b .color-gray {
            color: #909090;
            font-weight: 300 !important;
        }

.alverProMainTopBanner {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.alverProTabCapsule {
    margin-top: -67px;
}

    .alverProTabCapsule .title {
        font-size: 19px;
        text-align: center;
        color: white;
        margin-bottom: 15px;
    }

ul#alverProTabs {
    overflow: hidden;
    border-radius: 8px;
    width: 400px;
    margin: 0 auto;
    border: none;
    box-shadow: 0px 13px 20px rgba(48, 48, 48, 0.1);
    -webkit-box-shadow: 0px 13px 20px rgba(48, 48, 48, 0.1);
}

    ul#alverProTabs .nav-item {
        background-color: white;
        border: none;
        width: 50%;
        float: left;
    }

        ul#alverProTabs .nav-item button {
            color: #3C3C3C;
            font-size: 13px;
            border: none;
            padding: 18px 23px;
            width: 100%;
        }

            ul#alverProTabs .nav-item button:first-child {
                border-top-right-radius: 0px !important;
                border-bottom-right-radius: 0px !important;
            }

#alverProTabs .nav-link.active,
#alverProTabs .nav-item.show .nav-link {
    background-color: #C90C0F;
    color: white;
    border-radius: 0px !important;
    border: none;
}

.alverpro .bidTabs .item {
    background-color: white;
}

.alverpro .btn-filter {
    margin-right: 0px;
    margin-left: 20px;
    float: right;
}

#buttonGroupAlverPro button {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-color: #E5E5E5;
}

#buttonGroupAlverPro .secilenihaleler {
    color: #2A3B42;
}

#buttonGroupAlverPro .secimleritemizle {
    color: var(--red);
    background: rgba(220, 38, 38, 0.15);
}

#buttonGroupAlverPro .karsilastir {
    color: white;
    background-color: #C90C0F;
}

.alverpro .karsilastirButton {
    border: 1px solid #E5E5E5;
    color: #3C3C3C;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 4px;
    float: right;
    font-weight: 600;
}

    .alverpro .karsilastirButton img {
        margin-top: -2px;
        margin-right: 10px;
    }

.alverpro .karsilastirilmisButton {
    border: 1px solid transparent;
    color: #C90C0F;
    background: rgba(201, 12, 15, 0.08);
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 4px;
    float: right;
    font-weight: 600;
}

    .alverpro .karsilastirilmisButton img {
        margin-top: -2px;
        margin-right: 10px;
    }

.alverpro .proKarsilastirmaElement img {
    width: 97%;
}

.alverpro .proKarsilastirmaElement .mainImgPro {
    width: 100%;
    border-radius: 8px;
}

.alverpro .proKarsilastirmaElement .ihaleTypePro {
    float: left;
}

.alverpro .proKarsilastirmaElement .iconType img {
    margin-right: 10px;
}

.alverpro .productDetailRightContent {
    padding: 0;
}


.btn-choosing-right select {
    border-left: 0;
    border-color: #dcdcdc;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    background-image: url('../../assets/images/icons/select_arrow.svg');
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 13px;
    background-origin: content-box;
    background-size: 11px;
}

.arrowSelect select {
    background-image: url('../../assets/images/icons/select_arrow.svg');
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 13px;
    background-origin: content-box;
    background-size: 11px;
}

.arrowSelectCategory select {
    background-image: url('../../assets/images/icons/select_arrow.svg');
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 13px;
    background-origin: content-box;
    background-size: 11px;
    background-position-y: 15%;
}

.arrowSelectProduct select {
    background-image: url('../../assets/images/icons/select_arrow.svg');
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 13px;
    background-origin: content-box;
    background-size: 11px;
    background-position-y: 50%;
}

#cookiePopup {
    background: white;
    width: 400px;
    position: fixed;
    left: 10px;
    bottom: 20px;
    box-shadow: 0px 0px 15px #cccccc;
    -webkit-box-shadow: 0px 0px 15px #cccccc;
    padding: 25px;
    border-radius: 8px;
}

    #cookiePopup p {
        text-align: justify;
        font-size: 12px;
        color: #676767;
        line-height: 16px;
    }

    #cookiePopup button {
        width: 100%;
        border: #177d34;
        background: #1d7d35;
        padding: 6px;
        border-radius: 8px;
        color: white;
    }

























@media (min-width:1400px) {
    .profileWebDropdown {
        margin-left: -66px !important;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .container {
        max-width: 95%;
    }

    body {
        zoom: 80%;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .container {
        max-width: 95%;
    }

    .mainHeader {
        zoom: 65%;
    }

    .zoom_768_991_percent_65 {
        zoom: 65%;
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .container {
        max-width: 95%;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .profileWebDropdown {
        margin-left: -81px !important;
    }

    .triangle-bottom-right {
        display: none !important;
    }
}

@media(min-width: 768px) {

    .searchPage .searchResult .singularItem {
        width: 20%;
    }

    /*
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  */
    .productDetailRightContent {
        padding-left: 60px;
    }

    .width13percent {
        width: 13% !important;
    }

    .width12percent {
        width: 12% !important;
    }

    footer .footerBottom p {
        padding-left: 15px !important;
    }

    .mobileFilterIcons {
        text-align: right;
    }
}

/* ============ mobile view ============ */
@media(max-width: 991px) {

    #cookiePopup {
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        zoom: 70% !important;
        text-align: left !important;
    }

        #cookiePopup p {
            text-align: left !important;
        }

    .lastAddIlan {
        position: absolute;
        right: 0;
        background: white;
        width: 110px;
    }

    .alverpro .btn-filter {
        margin-top: 20px;
        float: left !important;
    }

    .karsilastirButton,
    .karsilastirilmisButton {
        margin-top: 11px;
        width: 100%;
        float: left !important;
    }

    .reportButtons {
        margin-top: 10px;
        margin-bottom: 20px;
    }

        .reportButtons button {
            margin: 0 !important;
            width: 48% !important;
            margin-right: 2% !important;
            font-size: 11px;
        }

    ul.alverProDetailListlAvantage {
        padding: 5px !important;
    }

    .faqs .nav-tabs .nav-link {
        width: 33%;
        /* margin-bottom: 10px; */
    }

    .accordion-item {
        zoom: 80%;
    }

    .accordion-button,
    .accordion-button:not(.collapsed) {
        font-weight: 400 !important;
    }

    .profileWebDropdown li a div {
        /* margin-top: -21px; */
        margin-top: 5px;
    }

    .homeStory .item p {
        font-size: 10px !important;
        margin-top: 2px;
    }

    .mobileHeaderNew {
        background-color: white !important;
    }

    .ilgiliSonucMobile {
        font-size: 15px !important;
    }

    .trash_mobile {
        float: left;
        width: 25%;
        text-align: left;
    }

    .doping a {
        display: block;
        text-align: center;
        border: 1px solid #f6e8e9;
    }

    .myIlans .trash_mobile img {
        width: 20px !important;
    }

    .edit_mobile {
        width: 75%;
        display: block;
        float: left;
        text-align: center;
    }

    .searchPage .btn-filter {
        display: block;
    }

    .imgProduct {
        max-width: 250px !important;
        height: 178px;
        object-fit: cover;
    }

    .homepageHightligths {
        zoom: 80%;
    }

        .homepageHightligths .single {
            padding: 0;
            border: none;
        }

    .mobilePL_0 {
        padding-left: 0px;
    }

    .homepageHightligths .single:hover,
    .homepageHightligths .singularItem {
        border: none !important;
    }

    .homepageHightligths .item:hover .single {
        border: none !important;
    }

    .productDetailSlider #carouselproductDetail .carousel-inner {
        padding: 0px;
    }

    #carouselproductDetail {
        padding: 0;
        border: none;
    }

    .mobileRightTopMenu {
        margin-right: 0px !important;
    }

    .container,
    .container-fluid,
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .mobile80PercentZoom {
        zoom: 80%;
    }

    .pointsPage table {
        zoom: 70%;
    }

    .myIlans .messages,
    .myIlans .edit,
    .myIlans .doping {
        margin-top: 5px;
        padding-top: 0px;
    }

    .myIlans .content {
        background-color: white;
        margin-top: -10px !important;
    }

    .myIlans .singularItem {
        background: #FAFAFA;
        border: 1px solid #dcdcdc;
        border-radius: 8px;
    }

    .myIlans .content .img img {
        width: 65px;
        height: 65px;
    }

    .messagesSection #nav-incoming {
        max-height: none !important;
        height: auto !important;
        overflow: auto !important;
    }

    .messageItem {
        zoom: 90% !important;
    }

    .resultForSearchTerms {
        margin-bottom: 10px !important;
        font-size: 16px !important;
    }

    .mobileShowFilterButton {
        display: block !important;
    }

    .searchSidebar {
        display: none;
    }

    .mobileFilterIcons button {
        width: 100%;
    }

    .mobileFilterIcons .orderWeb {
        padding-right: 15px !important;
    }

    .comments .bg .avatar .avatarImg {
        width: 58px;
        height: 58px;
    }

    .comments .rightInfo .capsule {
        width: 100%;
        margin-top: 10px;
    }

    .comments .nav-tabs {
        width: 100%;
    }

        .comments .nav-tabs .active {
            font-size: 10px !important;
            width: 50%;
        }

        .comments .nav-tabs .nav-link {
            width: 50%;
            font-size: 10px;
        }

    .comments .bg .message {
        font-size: 12px;
        text-align: justify;
    }

    .productDetailRightContent .contentUL .col-md-11,
    .productDetailRightContent .information .col-md-11 {
        margin-left: 20px !important;
        color: #3C3C3C;
    }

    .mobileShowProductHead .location a {
        font-size: 13px;
        color: var(--semi-gray);
    }

    .mobileShowProductHead .title {
        font-size: 20px;
        color: var(--grayscale-dark);
        padding: 0;
        font-weight: 700;
        margin-top: -15px;
    }

    .breadcrumb {
        zoom: 80%;
        margin-top: 20px;
    }

    .productDetailSlider .carousel-indicators button img {
        display: none !important;
    }

    .productDetailSlider .carousel-indicators .active {
        background-color: var(--red) !important;
    }

    .productDetailSlider .carousel-indicators button {
        background-color: #DCDCDC !important;
        width: 1px;
        height: 1px;
        padding: 5px;
        border-radius: 100%;
    }

    .registerLogin .loginscreen {
        width: 100% !important;
    }

    .homepageHightligths .single .favorites_Hearth {
        display: block;
        opacity: .8;
    }

    .bidTabs .tab-content .contentButton {
        text-align: center;
        margin-bottom: 10px;
        margin-top: -20px;
    }

    .homeStory .storyMobilies {
        flex-wrap: inherit !important;
        overflow: scroll;
        width: 100%;
        overflow-x: scroll;
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: -webkit-inline-box;
        padding-bottom: 10px;
    }

    .homeStory .col-md-1 {
        width: 90px;
    }

    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }

    .mobileScrollRow {
        flex-wrap: inherit;
        overflow-x: scroll;
    }

        .mobileScrollRow .content {
            zoom: 90%;
        }

    .homepageHightligths .mobileScrollRow .col-md-2 {
        width: 180px;
    }

    .mobileEndViewAll {
        font-size: 11px;
        padding-top: 3px;
    }

        .mobileEndViewAll a {
            color: var(--red) !important;
        }

    footer {
        padding: 0;
        text-align: center;
    }

        footer .colon {
            width: 100%;
            margin-bottom: 35px;
        }

        footer .footerSocialHead {
            width: 100%;
            margin-top: 25px;
        }

    .footerSocialLinks {
        width: 86px !important;
        overflow: hidden !important;
        margin: 0 auto !important;
    }
}

.searchPage .searchSidebar ul li:hover {
    color: var(--red) !important;
}

/** WEB SITE CSS CODES **/
