body {
    font-family: "Roboto", sans-serif;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #bbbbbb;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* top nav css */
.top-nav {
    box-shadow: 0px 4px 8px 0px #00000026;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
}
/* top nav css */
/* tabs css */

.tab-list {
    padding: 0;
    display: flex;
}

.tab-item {
    background: #0000000d;
    border: 0.83px solid #c9c9c9;
    color: #575757;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.tab-item:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.tab-item:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.active-tab {
    background: rgba(0, 133, 255, 0.05);
    border: 0.83px solid #0066ff;
    color: #0066ff;
    font-weight: 700;
    fill: #0066ff;
}
.active-tab img {
    fill: #0066ff;
}
.tab-item:focus-visible {
    outline: none;
}
/* tabs css */
.save-btn {
    @apply bg-[#00365A] text-white font-bold text-xs px-6 py-3 rounded-md cursor-pointer;
}
.sidebar {
    grid-area: sidebar;
    border-right: 1px solid #eaeaea;
    padding: 0.5rem 1rem;
    /* height: calc(100vh -58px);
    overflow: auto;
    position: fixed; */
}

.content {
    grid-area: content;
    /* height: calc(100vh -58px);
    overflow: auto;
    position: fixed; */
}

.wrapper {
    display: grid;
    grid-template-areas: "sidebar content content content";
    grid-template-columns: 30% auto;
}
.select-btn {
    @apply py-2 bg-transparent text-[#838383] w-full rounded-sm font-medium;
}
.select-btn.selected {
    @apply py-2 bg-white text-black w-full rounded-sm;
}
.color-input {
    block-size: 31px;
    inline-size: 31px;
    background: none;
    cursor: pointer;
}
/* switch css */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #000000;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(34px);
    -ms-transform: translateX(34px);
    transform: translateX(34px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
.menu-link {
    font-family: "Futura Std Bold Condensed Oblique";
    font-weight: 700;
    font-style: italic;
}
.btn-primary-green {
    background-color: #005c31;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    padding: 10px 20px;
}
/* menu css */
.menu-card {
    border: 0.71px solid #c0c0c0;
    box-shadow: 0px 5.66px 11.32px 0px #0000000d;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    /* width: 250px; */
    margin: 0.5rem;
}
.product-img {
    position: absolute;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* menu css */
/* download css */
.ipnone-inner {
    margin: 0.6rem 0.85rem;
    position: absolute;
    width: 90%;
}
.oneplus-inner {
    margin: 0.6rem 0.65rem;
    position: absolute;
    width: 92.2%;
}
/* download css */
/* accodian css */
.accordian-body {
    max-height: 0;
    overflow: hidden;
    text-transform: ease-in-out;
    transition-duration: 0.5s;
    transition-property: max-height;
}

.accordian.opened .accordian-body {
    max-height: 100rem;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: max-height;
}

.faq-container {
    margin: 20px;
}

.accordion {
    cursor: pointer;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
}

.accordion-title p {
    font-weight: bold;
}

.accordion.opened .accordion-body {
    display: block;
}

.accordion-body {
    display: none;
    margin-bottom: 16px;
}

hr {
    margin: 10px 0;
}

/* accodian css */
/* find us css */
.find-us .tab-item {
    background: #eeeeee;
    border: none;
    color: #808080;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 0 4px;
}
.find-us .active-tab {
    background: #005c3126;
    border: none;
    color: #005c31;
    font-weight: 700;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.store-info-table td,
.store-info-table th {
    white-space: nowrap;
}
/* find us css */
.star-rating svg {
    display: inline-block;
    height: 25px;
    width: 25px;
}
.elipsis-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.elipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.elipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.elipsis-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.react-multiple-carousel__arrow--left {
    left: calc(0% + 1px) !important;
}
.react-multiple-carousel__arrow--right {
    right: calc(0% + 1px) !important;
}
@media only screen and (max-width: 767px) {
    .ipnone-inner {
        margin: 5%;
    }
    .oneplus-inner {
        margin: 5%;
    }
    .menu-card {
        width: 100%;
    }
    .slick-next,
    .slick-prev {
        display: none !important;
    }
}
