@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}


/* Chrome, Safari, Edge, Opera */

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


/* Firefox */

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


/* ---404 not found---- */

section.block_not_found {
    padding: 2% 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
}

.not_found {
    text-align: center;
}

.not_found h2 {
    font-size: 10rem;
    color: #c1c1c1;
}

.not_found h1 {
    font-size: 5rem;
    color: #000;
    padding: 6% 0 3% 0;
    font-weight: 300;
}

.not_found h3 {
    font-size: 1.5rem;
    color: #000;
    font-weight: 500;
    padding: 2% 0 0 0;
}

.not_found p {
    text-align: center;
    font-size: 1rem;
    line-height: normal;
    padding: 6% 0;
    color: #000;
}

.not_found a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    background: #d29446;
    padding: 15px;
    font-size: 1rem;
    width: 200px;
}


/* ---404 not found---- */


/* ---flash -message--- */

.alert {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    line-height: normal;
    margin-bottom: 1%;
    padding: 10px;
    color: #000;
    border-radius: 8px;
}

.alert.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
}

.alert.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
}


/* ---flash -message--- */

.block_top {
    box-shadow: 0px 0px 4px -1px rgb(117 117 117 / 75%);
    height: 50px;
    width: 50px;
    background: #fff;
    bottom: 5%;
    left: 3%;
    position: fixed;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
}

.block_top:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    border-top: 2px solid #d29446;
    border-left: 2px solid #d29446;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%) rotate( 45deg);
}


/* ----header start---- */


/* --tooltip-- */

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: max-content;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    text-transform: capitalize;
    transform: translateX(-50%);
    font-size: 0.875rem;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}


/* --tooltip-- */

.block_top_text {
    height: 32px;
    background: #000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.block_top_text p {
    color: #fff;
    font-size: 0.875rem;
    line-height: normal;
    letter-spacing: normal;
}

.menu_search_box {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block_menu {
    padding: 2% 0%;
    margin: 0 auto;
    width: 84%;
    display: flex;
    align-items: center;
}

.block_menus {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.block_menu_elem {
    display: flex;
    align-items: center;
    width: 25%;
}

.block_menu_logo {
    width: 25%;
}

.block_menu_logo img {
    width: 80%;
}

.block_menu_search form {
    padding: 7px 15px 7px 15px;
    border: solid 1px #d8d8d8;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.block_menu_search form input {
    border: 0;
    margin-right: 10px;
    width: -webkit-fill-available;
}

.block_menu_search form button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.block_menu_search form input::placeholder {
    color: #000;
    font-size: 0.875rem;
}

.block_menu_search {
    width: 100%;
}

.block_menu_currency {
    margin: 0 20px;
    text-align: center;
}

.block_menu_account {
    margin-right: 20px;
    text-align: center;
}

.block_menu_currency span {
    font-size: 0.875rem;
}

.open_inventory {
    font-size: 0.875rem;
    cursor: pointer;
}

.block_inventory {
    text-align: center;
    position: relative;
}

ul.open_inventory_drop {
    position: absolute;
    top: calc(100% + 5px);
    border: solid 1px #d8d8d8;
    padding: 5px 10px;
    width: 85px;
    background: #fff;
    text-align: left;
    display: none;
    z-index: 2;
}

ul.open_inventory_drop li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    text-transform: capitalize;
}

ul.open_inventory_drop li {
    list-style: none;
}

.open_inventory i {
    margin-right: 6px;
}

.block_menu_account {
    cursor: pointer;
}

.block_cart a {
    font-size: 0.875rem;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    display: inline-block;
}

.block_cart {
    /* width: 25%; */
    text-align: center;
}

.block_cart a i {
    margin-right: 5px;
}

.block_menu_toggle span {
    font-size: 0.875rem;
}

.block_menu_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.block_menu_toggle i {
    margin-right: 6px;
    font-size: 1rem;
}

.block_menu_toggle {
    position: relative;
}

ul.block_menu_drop {
    position: absolute;
    top: calc(100% + 5px);
    border: solid 1px #d8d8d8;
    padding: 5px 10px;
    width: 120px;
    background: #fff;
    text-align: left;
    z-index: 2;
}

ul.block_menu_drop li {
    list-style: none;
}

ul.block_menu_drop li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
}

img.for_mobile {
    display: none;
}


/* ----header end---- */


/* ----Diamond listing start---- */


/* width */

section.block_filters::-webkit-scrollbar {
    width: 5px;
}


/* Track */

section.block_filters::-webkit-scrollbar-track {
    background: #fff;
}


/* Handle */

section.block_filters::-webkit-scrollbar-thumb {
    background: #d29446;
}


/* Handle on hover */

section.block_filters::-webkit-scrollbar-thumb:hover {
    background: #d29446;
}

section.block_filters {
    padding: 2% 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 3;
    width: 390px;
    box-sizing: border-box;
    height: 100vh;
    overflow-x: auto;
    display: none;
}

.filter_box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2%;
    flex-wrap: wrap;
    border-bottom: 1px solid #d8d8d8;
    padding: 0 4.5% 5%;
    box-sizing: border-box;
}

.filter_title h1 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.basic_all a {
    color: #000;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    width: 50%;
    text-align: center;
}

.basic_all a.active {
    background: #d29446;
    color: #fff;
}

.intensity_box.active,
.overtone_box.active {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 16%);
    background: #d29446;
    color: #fff;
}

.filter_options {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.opt_basic {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.adv_option {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.shape_options {
    /* width: 100%; */
}

.shape_box {
    height: 48px;
    width: 48px;
    margin: 0 7px 7px 0;
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.shape_box embed {
    pointer-events: none;
}

.filter_title {
    width: 100%;
    padding-top: 15px;
}

.carat_input {
    width: 50%;
}

.carat_input input {
    height: 40px;
    border: solid 1px #d8d8d8;
    width: 90%;
    padding: 0 6px;
    color: #000;
}

.carat_input input::placeholder {
    color: #000;
    font-size: 0.875rem;
}

.price_input {
    width: 50%;
}

.price_input input {
    height: 40px;
    border: solid 1px #d8d8d8;
    width: 90%;
    padding: 0 6px;
    color: #000;
}

.price_input input::placeholder {
    color: #000;
    font-size: 0.875rem;
}

.shape_box.active {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
    background: #d29446;
}

.shape_box svg {
    width: 70%;
}

.shape_box.active svg .cls-3 {
    stroke: #fff !important;
    fill: none;
    stroke-width: 0.8px;
}

.select_box {
    height: 32px;
    min-width: 38px;
    margin: 0 7px 7px 0;
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 5px;
    margin-bottom: 7px;
}

.select_name {
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
}

.block_menu_currency select {
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    font-size: 0.8rem;
    outline: none;
}

.select_box.active {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 16%);
    background: #d29446;
}

.select_box.active .select_name {
    color: #fff;
}

.color_white {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.color_fancy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.fancy_box h2 {
    font-weight: 400;
    font-size: 0.875rem;
    padding-top: 8px;
    text-align: center;
}

.fancy_box .color_box {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    margin: 0 auto;
}

.fancy_box {
    min-width: 40px;
    margin: 0 10px 4px 0;
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    cursor: pointer;
    padding: 8px;
    margin-bottom: 7px;
}

.fancy_box.active {
    background: #222222db;
    color: #fff;
}

.color_intensity {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.color_overtone {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.intensity_box {
    min-width: 40px;
    margin: 0 10px 4px 0;
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    cursor: pointer;
    padding: 8px;
    margin-bottom: 7px;
    font-size: 0.875rem;
    color: #000;
}

.overtone_box {
    min-width: 40px;
    margin: 0 7px 7px 0;
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    cursor: pointer;
    padding: 8px;
    font-size: 0.875rem;
    color: #000;
}

.overtone_title {
    width: 100%;
    padding: 2% 0;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.hide_filters {
    width: 84%;
    text-align: center;
    border-top: 1px solid #e8e8e8;
    margin: 0 auto;
}

.show_btn {
    background: #d29446;
    display: inline-block;
    color: #fff;
    font-size: 1.125rem;
    padding: 1% 5%;
    border-radius: 0 0 20px 20px;
    cursor: pointer;
}

section.block_diamond {
    padding: 2% 8%;
}

.toggle-right {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: flex-end;
}

.toggle-right span {
    font-size: 1rem;
    margin-right: 5px;
}

.toggle-right div {
    color: #a5a4a4;
    font-size: 1.25rem;
    border: 1px solid #ccc;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0px 4px;
    cursor: pointer;
}

.toggle-right div.active {
    border: 1px solid #d29446;
    color: #d29446;
}


/* ---table view--- */

.table-layout .listing_box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1% 0 1% 0;
    border-top: 1px solid #e8e8e8;
}

.table-layout .diamond_img {
    width: 7.14%;
    text-align: center;
}

.table-layout .diamond_detail {
    width: 57.12%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-layout .diamond_price {
    width: 28.56%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-layout .diamond_view {
    width: 7.14%;
    text-align: center;
}

.table-layout .diamond_img img {
    width: 40px;
}

.table-layout .diamond_detail div {
    width: 12.5%;
    font-size: 0.875rem;
    text-align: center;
}

.table-layout .diamond_price div {
    width: 25%;
    font-size: 0.875rem;
    text-align: center;
}

.table-layout .diamond_price .diam_status {
    color: #fff;
    padding: 4px 7px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
    text-transform: capitalize;
}

.table-layout .diamond_price .green p {
    background: #009688;
    border-radius: 5px;
    padding: 5px;
}

.table-layout .diamond_price .red p {
    background: #ea3333;
    border-radius: 5px;
    padding: 5px;
}

.grid-layout .diamond_price .diam_status {
    display: none;
}

.table-layout .diamond_view a {
    color: #fff;
    font-size: 0.875rem;
    text-decoration: none;
    background: #d29446;
    padding: 4px 11px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    display: block;
    cursor: pointer;
}

.table-layout .diamond_view a.remove-enquiry {
    background: #000;
}

.table-layout .diamond_view a i {
    font-size: 0.75rem;
}

.table-layout .table_title {
    padding: 2% 0;
}

.table-layout .table_title ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-layout .table_title ul li {
    list-style: none;
    font-size: 0.875rem;
    font-weight: 600;
    width: 7.14%;
    text-align: center;
}

.table-layout .diamond_price div span {
    display: none;
}

.table-layout .table_only {
    display: block;
    font-size: 14px;
    line-height: normal;
    /* text-align: center; */
}

.table-layout .diamond_detail .shape {
    display: none;
}


/* ---grid view--- */

.grid-layout .table_only {
    display: none;
}

.grid-layout .listing_box {
    width: 19%;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    margin: 0 auto 1% auto;
}

.grid-layout .diamond_detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.grid-layout .diamond_price {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.grid-layout .diamond_view {
    width: 100%;
    text-align: center;
    padding: 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid-layout .diamond_img img {
    width: 100% !important;
    height: inherit;
    object-fit: cover;
}

.grid-layout .diamond_detail div {
    font-size: 0.875rem;
    text-align: center;
}

.grid-layout .diamond_price div {
    font-size: 0.875rem;
    text-align: center;
}

.grid-layout .diamond_view a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    background: #d29446;
    padding: 10px;
    border-radius: 0;
    letter-spacing: 0.5px;
    display: inline-block;
    width: 49%;
    margin: 1%;
    cursor: pointer;
}

.grid-layout .diamond_view a.remove-enquiry {
    background: #000;
}

.grid-layout .diamond_view a i {
    font-size: 0.8rem;
}

.grid-layout .listing_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.grid-layout .table_title {
    display: none;
}

.grid-layout {
    padding: 1% 0 2%;
}

.grid-layout .diamond_price div span {
    font-size: 0.625rem;
}

.toggle-filter {
    display: none;
}

.close_filters {
    display: none;
}

.reset_filter {
    width: 100%;
    text-align: right;
    padding: 1% 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.reset_filter .show_result {
    width: 87%;
    background: #d29446;
    color: #fff;
    padding: 12px;
    font-size: 1.125rem;
    border-radius: 0;
    cursor: pointer;
    text-align: center;
    margin: 0 auto;
}

.block_tabswap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    border-bottom: solid 1px #e8e8e8;
    margin-bottom: 5%;
}

.tab_btngroup {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 5%;
}

.tabswap_box {
    font-size: 1rem;
    width: 50%;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
}

.tabswap_box.active {
    background: #d29446;
    color: #fff;
}

.total_prod {
    width: 50%;
}

.block_change_total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total_prod h2 {
    font-size: 1.125rem;
    font-weight: 400;
}

.table-layout .diamond_view a:nth-child(1) {
    margin-bottom: 6px;
}

.grid-layout .diamond_img {
    position: relative;
}

.grid-layout .diamond_img:before {
    padding-top: 80%;
    content: "";
    display: block;
}

.divSM {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.layout.table-layout .divSM {
    display: none;
}

.grid-layout .diamond_img img.table_img {
    display: none;
}

.grid-layout .has_front_image {
    position: absolute;
    top: 0;
}

.table-layout .has_front_image {
    display: none;
}

.basic_all {
    border-bottom: solid 1px #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.search_block {
    width: 100%;
    padding-bottom: 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding-right: 5%;
}

.reset_all {
    color: #6b6b6b;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
}

.back_diam {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 0 5%;
}

.back_diam img {
    margin-right: 20px;
    width: 20px;
}

.close-fil {
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: #00000059;
    height: 100%;
    width: 100%;
    z-index: 1;
    display: none;
}

.shape_reset {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 13px;
}

.shape_reset a {
    color: #6b6b6b;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 400;
}

.show_result {
    background: #d29446;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    padding: 10px;
    width: 385px;
    margin: 0 auto;
    position: fixed;
    bottom: 5px;
    left: 0;
    box-sizing: border-box;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    cursor: pointer;
}


/* ----Diamond listing end---- */


/* ----Diamond detail start---- */

section.block_detail {
    width: 70%;
    margin: 0 auto;
}

.block_detail_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    flex-wrap: wrap;
}

.block_detail_slider {
    width: 50%;
}

.block_detail_text {
    width: 50%;
    padding: 2% 3%;
    box-sizing: border-box;
}

.big_slider_box img {
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.big_slider_box {
    position: relative;
    padding-top: 80%;
}

.big_slider .slick-dots {
    bottom: -25px;
    margin-top: 25px;
}

.big_slider .slick-dots li button:before {
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: 1;
    color: #000;
}

.big_slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #d29446;
}

.big_slider_box iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.block_detail_text h2 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
}

.block_detail_text h4 {
    font-size: 2.50rem;
    font-weight: 500;
    line-height: normal;
    padding: 3% 0;
}

.multi_detail ul li {
    list-style: none;
    font-size: 1rem;
    font-weight: 400;
    margin-right: 40px;
    line-height: normal;
}

.multi_detail ul {
    display: flex;
    align-items: center;
}

.multi_detail ul li span {
    font-weight: 500;
    margin-left: 5px;
}

.multi_detail a {
    background: #d29446;
}

.block_detail_text a {
    background: #d29446;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    line-height: normal;
    padding: 2% 14%;
    text-decoration: none;
    cursor: pointer;
}

.multi_detail {
    padding-bottom: 2%;
}

.diam_details {
    width: 100%;
    margin: 2% 0;
    padding: 2% 0;
}

.diam_details ul li {
    list-style: none;
    font-size: 0.9rem;
    line-height: normal;
    padding: 7px 0;
}

.diam_details ul {
    column-count: 2;
}

.diam_details ul li span {
    font-weight: 500;
}

.diam_details ul li a {
    color: #d29446;
    background: #fff;
    padding: 0;
}

a.memo_btn {
    background: #d8d8d8;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    line-height: normal;
    padding: 2% 14%;
    text-decoration: none;
}


/* ----Diamond detail end---- */


/* -----login register forgot password---- */

section.block_login {
    padding: 2% 0;
    margin: 0 auto;
    width: 25%;
}

section.block_login.block_login_mod h3 {
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
    line-height: normal;
}

section.block_login h1 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 3%;
}

section.block_login .form-group input {
    width: 100%;
    border: 1px solid #d8d8d8;
    height: 45px;
    padding: 2%;
    box-sizing: border-box;
    color: #000;
}

section.block_login .form-group input::placeholder {
    color: #000;
}

section.block_login .form-group {
    padding-bottom: 25px;
    position: relative;
}

section.block_login button {
    display: block;
    width: 100%;
    background: #d29446;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 0.9rem;
    padding: 2.5%;
    font-weight: 600;
    margin-top: 3%;
    height: 50px;
    cursor: pointer;
}

section.block_login a {
    display: block;
    text-align: center;
    color: #000;
    font-size: 0.9rem;
    padding: 4% 0 0;
    text-decoration: underline;
}

section.block_login h2.error {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #ff0000;
}

section.block_login form {
    padding: 7% 0 0 0;
}

span.error {
    position: absolute;
    bottom: 5px;
    left: 0;
    display: block;
    width: 100%;
}

section.block_login .form-group select {
    width: 100%;
    border: 1px solid #d8d8d8;
    height: 45px;
    padding: 2%;
    box-sizing: border-box;
    color: #000;
    outline: none;
}

section.block_login_mod .form-group {
    padding-bottom: 2%;
}

.rem_check {
    display: block;
    text-align: center;
    padding-bottom: 10px !important;
}

.rem_check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.rem_check label {
    position: relative;
    cursor: pointer;
}

.rem_check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #d29446;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    top: -1px;
}

.rem_check input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 8px;
    width: 3px;
    height: 10px;
    border: solid #d29446;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* -----login register forgot password---- */


/* ----inquiry ---- */

section.block_inquiry h1 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 3%;
}

section.block_inquiry {
    width: 40%;
    margin: 0 auto;
}

.block_table table {
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
}

.block_table table th {
    padding: 15px 0;
}

.block_table table td {
    padding: 15px 0;
}

.block_table table tr:nth-child(even) {
    background: #f9f9f9;
}


/* ----inquiry ---- */


/* ----cart---- */

section.block_cart_mod {
    padding: 2% 4%;
}

section.block_cart_mod h1 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 2%;
}

.cart_title ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart_title ul li {
    list-style: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    width: 7.14%;
    text-align: center;
}

.all_detail {
    display: flex;
    align-items: center;
    width: 92.86%;
    padding: 1.6% 0;
}

.all_detail div {
    width: 7.69%;
    text-align: center;
    font-size: 0.9rem;
    color: #000;
}

.all_detail .image div {
    width: 100%;
}

.all_detail .image .img_box {
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.img_box i {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

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

.remove_box {
    width: 7.14%;
    text-align: center;
}

.remove_box .remove {
    position: relative;
    height: 25px;
    width: 25px;
    background: #d8d8d8;
    margin: 0 auto;
    cursor: pointer;
}

.remove_box .remove:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 1px;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.remove_box .remove:after {
    position: absolute;
    content: "";
    height: 14px;
    width: 1px;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate( -45deg);
}

.all_detail div span.diam_title {
    display: none;
}

.cart_title {
    padding: 1% 0;
}

.cart_row:nth-child(odd) {
    background: #fbfbfb;
    border-bottom: 1px solid #f2f2f2;
}

.cart_status {
    padding: 3% 0;
    width: 25%;
    margin: 0 auto;
}

.cart_status label {
    line-height: normal;
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
}

.cart_status .form-group select {
    width: 100%;
    border: 1px solid #d8d8d8;
    height: 45px;
    padding: 2%;
    box-sizing: border-box;
    color: #000;
    outline: none;
}

h2.error {
    text-align: center;
}

.cart_status .form-group textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 2%;
    box-sizing: border-box;
    color: #000;
    font-family: inherit;
}

.cart_status .form-group {
    margin-bottom: 5%;
}

.cart_status form button {
    display: block;
    width: 100%;
    background: #d29446;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 0.9rem;
    padding: 2.5%;
    font-weight: 600;
    margin-top: 3%;
    height: 50px;
    cursor: pointer;
}

.empty_cart h2 {
    color: #d29446;
    font-size: 40px;
}

.empty_cart h3 {
    font-size: 22px;
    font-weight: 400;
    padding: 15px 0;
}

.empty_cart {
    padding: 2% 4%;
    text-align: center;
}

.empty_cart a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    background: #d29446;
    font-size: 1rem;
    padding: 10px;
}


/* -----cart---- */


/* ----my account---- */

section.block_account {
    width: 50%;
    margin: 0 auto;
}

section.block_account h1 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 3%;
}

section.block_account {
    padding: 2% 0;
}

.block_tabs {
    padding: 2% 0;
}

ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-bottom: 1px solid #ccc;
}

ul.tabs li {
    background: none;
    color: #000;
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    line-height: normal;
}

ul.tabs li.current {
    background: #d29446;
    color: #fff;
    border: 1px solid #d29446;
}

.tab-content {
    display: none;
    padding: 1% 0;
}

.tab-content.current {
    display: inherit;
}

.profile_box ul li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    padding: 2% 0%;
}

.profile_box ul li h2 {
    width: 25%;
    font-size: 1rem;
    font-weight: 500;
}

.profile_box ul li .profile_detail {
    width: 75%;
}

.profile_box ul li .profile_detail span {
    font-size: 1rem;
}

.profile_box ul li:nth-child(even) {
    background: #fbfbfb;
    border-bottom: 1px solid #f2f2f2;
}

.block_update {
    padding: 2% 0;
}

.block_update .form-group {
    position: relative;
    padding-bottom: 25px;
}

.block_update .form-group label {
    display: block;
    line-height: normal;
    padding-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.block_update .form-group input {
    width: 50%;
    border: 1px solid #d8d8d8;
    height: 45px;
    padding: 2%;
    box-sizing: border-box;
    color: #000;
}

.block_update button {
    display: block;
    background: #d29446;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 15px;
    cursor: pointer;
}

.block_invoice {
    padding: 2% 0;
}

.invoice_title ul li {
    list-style: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

.invoice_title ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice_detail {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2% 0;
}

.invoice_detail div {
    text-align: left;
    font-size: 0.9rem;
}

.invoice_detail div h2 {
    display: none;
}

.invoice_detail div a {
    color: #000;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 3px 8px;
    border-radius: 5px;
    background: #fff;
}

.invoice_detail .invoice_status span {
    background: #009688;
    color: #fff;
    padding: 4px 7px;
    border-radius: 5px;
    display: inline-block;
}

.invoice_order,
.invoice_title ul li:nth-child(1) {
    width: 15%;
}

.invoice_date,
.invoice_title ul li:nth-child(2) {
    width: 23%;
}

.invoice_updated,
.invoice_title ul li:nth-child(3) {
    width: 22%;
}

.invoice_send,
.invoice_title ul li:nth-child(4) {
    width: 25%;
}

.invoice_status,
.invoice_title ul li:nth-child(5) {
    width: 15%;
}

.invoice_detail:nth-child(odd) {
    background: #fbfbfb;
    border-bottom: 1px solid #f2f2f2;
}

.invoice_title {
    padding-bottom: 2%;
}

.cart_title_mod ul li {
    width: 7.69%;
}

.cart_row_mod .all_detail {
    width: 100%;
}

.cart_row_mod .all_detail div {
    width: 7.69%;
}

.diam_title ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.diam_title ul li {
    list-style: none;
    font-weight: 500;
    width: 12.5%;
    text-align: left;
}

.diam_detail_row ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.diam_detail_row ul li {
    list-style: none;
    width: 12.5%;
    text-align: left;
    font-size: 0.9rem;
}

.diam_detail_row ul li span {
    display: none;
}

.diam_title {
    padding: 2% 0;
}

.diam_detail_row {
    padding: 2% 0;
}

.diam_detail_row:nth-child(odd) {
    background: #fbfbfb;
    border-bottom: 1px solid #f2f2f2;
}

.diam_detail_row ul li p {
    background: #009688;
    color: #fff;
    padding: 4px 7px;
    border-radius: 5px;
    display: inline-block;
}


/* ----my account---- */


/* ----add popup----- */

.overlay_popup {
    position: fixed;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    height: 100%;
    width: 100%;
    background: #00000040;
    transition: 0.2s;
}

.block_add_popup {
    background: #fff;
    width: 25%;
    text-align: center;
    padding: 2%;
    box-sizing: border-box;
    border-radius: 20px;
    transition: 0.5s ease-in-out;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tick_box {
    color: rgb(92 184 92);
    font-size: 2rem;
    border: 3px solid rgb(92 184 92 / 49%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.block_add_popup p {
    font-size: 1.2rem;
    color: #797979;
    font-weight: 300;
    line-height: normal;
    padding: 4% 0;
}

.button-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4% 0;
}

.block_add_popup h2 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: normal;
    padding: 5% 0 1% 0;
}

.button-group a {
    color: #000;
    text-decoration: none;
    line-height: normal;
    width: 48%;
    border-radius: 10px;
}

.button-group .continue {
    background: #0275d8;
    color: #fff;
    font-size: 1rem;
    padding: 13px 0;
    outline: none;
    border: 0;
    box-sizing: border-box;
}

.button-group .checkout {
    background: #5cb85c;
    color: #fff;
    font-size: 1rem;
    padding: 13px 0;
    outline: none;
    border: 0;
    box-sizing: border-box;
}


/* ----add popup----- */

ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    width: max-content;
    margin: 3% auto;
}

ul.pagination li {
    list-style: none;
    border-right: 1px solid #ccc;
    font-size: 1rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

ul.pagination li a {
    color: #d29446;
    text-decoration: none;
    font-weight: 500;
}

ul.pagination li:last-child {
    border: 0;
}

.block_download {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0% 0 1% 0;
}

.block_download a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: #d29446;
    padding: 10px 20px;
    border-radius: 10px;
}