@media only screen and (min-width: 360px) and (max-width: 776px) {
    #displayModel {
        height: 300px;
        width: 100%;
    }
    }

    @media only screen and (max-width: 768px) {
    .navbar-collapse{
        box-shadow: 0 8px 9px -10px #00000061;
<!--        background-color: #f6f6f6;-->
      }
    #jewelleryTitle {
        color: var(--text-black-custom);
    font-size:calc(100% + 0.2vw);
<!--        margin-left: 25px;-->
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1033px) {
    #displayModel {
        width: 100%;
        height: 474px;
    }

}
    @media only screen and (min-width: 1034px) {
    #displayModel {
        width: 100%;
        height: 80vh;
    }
    }
    * {
  box-sizing: border-box;
}

body {
    font-family: "Roboto Condensed", sans-serif !important;
  color: var(--text-black-custom);
}

/* Float four columns side by side */
.column {
  float: left;
  width: 20%;
  padding: 0 10px;
  flex: 1 1 16%;
  box-sizing: border-box;
<!--  display: flex;-->
  justify-content: center;
  margin-bottom: 20px;
}

/* Remove extra left and right margins, due to padding */
.row {
      display: flex;
      flex-wrap: wrap; /* Ensures items wrap if there's not enough space */
<!--      justify-content: space-between; /* Adjusts the spacing between columns */-->
<!--      gap: 20px; /* Adds space between columns */-->
  }

/* Clear floats after the columns */
 column:after {
  content: "";
  display: table;
  clear: both;
}


/* Responsive columns */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 8px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0 solid transparent;
}
.card-footer {
    position: relative;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vertical-line {
    border-left: 1px solid #ccc;
    height: 100%;
}

.try-it-on {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.column{
width:20%;
}
.footer-line {
    height: 2px; /* Thickness of the line */
    background-color: #ddd; /* Color of the line */
}
a {
    color: var(--text-black-custom);
    text-decoration:none;
}
.underline {
    text-decoration-line: none;
}

.try-it-on:hover {
    background-color: #f0f0f0; /* Light grey background on hover */
}
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

#toggleDark {
    position: absolute;
    left: 15px;
    bottom: 2%;
    font-size: 25px;
    cursor: pointer;
    color: #1a1a1a;
    transition: color 0.3s ease;
}


#toggleDark.bi-moon-fill {
    color: #bebebe;
}

#myModelViewer {
    position: absolute;
    text-align: center;
    background-color: #C7C8CC;
    z-index: 5;
    width: 100%;
    height: 100%;
}
 .btn-close{
    top: 10px;
    position: absolute;
    right: 10px !important;
    border-radius: 4px;
    background-color: #c7ccd1 !important;
}
.zoom-button {
      transform: scale(0.8);
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      border-radius: 5rem;
    }
.titleButtons{
    text-decoration:none;
    margin-left: 0;
    margin-right: 0;
    font-size: calc(100% + 0.18vw);
<!--    padding: 1.35rem 0 1.25rem !important;-->

<!--    line-height: 1.2rem;-->
    transition: color .2s;
    display: flex;
    color: var(--text-black-custom);
;
}

.necklace-image {
  width: 90%;
  height: auto;
  object-fit: cover;
}
.h-100 {
  height: 100%;
}

model-viewer::part(default-progress-bar) { display: none; }


.model-view-btn{
    --bs-btn-border-width: none !important;
}

h2 {
    color: var(--text-black-custom);
    text-align: center;
}
form {
<!--    background-color: #fff;-->
<!--    padding: 3rem 0;-->
<!--    width: 58%;-->

    border-radius: 20px;
    margin: auto;
    }
label {
     font-weight: 500;
     margin-top: 10px;
}
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px 0;
    margin-top: 10px;
    border-bottom: 1px solid #ccc;
}
input[type="text"]:focus-visible, input[type="email"]:focus-visible, textarea:focus-visible{
outline: none !important;
}

textarea {
    height: 100px;
 }
 .submit-wrapper{
  text-align: center;
  }
 input[type="submit"] {
      background-color: white;
      color: var(--text-black-custom);
      border: 2px solid grey;
      padding: 10px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }

    input[type="submit"]:hover {
      border: 2px solid #f47e18;
    }


 .success-message {
      text-align: center;
      color: green;
      margin-bottom: 20px;
    }
 .error-message {
      color: red;
      font-size: 0.9em;
    }
    .error {
      border-color: red;
    }

     .success-modal {
      display: none;
      position: fixed;
      z-index: 1001;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.6);
      animation: fadeIn 0.5s;
    }

    .success-modal-content {
      position: relative;
      background-color: #fff;
      margin: auto;
      padding: 20px;
      border: none;
      width: 80%;
      max-width: 400px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      text-align: center;
      animation: slideIn 0.5s;
    }

    .close {
      position: absolute;
      top: 0;
      right: 12px;
      font-size: 28px;
      font-weight: normal;
      cursor: pointer;
    }

    .close:hover,
    .close:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
    }

    .modal-content p {
      font-size: 1.2em;
      color: #333;
      margin: 20px 0;
    }

    .modal-button {
      background-color: var(--btn-bg-dark);
      width: max-content;
      border-radius: 30px !important;
      border: none;
      color: white;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 0;
      cursor: pointer;
      transition: background 0.3s;
    }

    .modal-button:hover {
      background: #f47e18 !important;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideIn {
      from { transform: translateY(-200px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

       .form-container {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f9f9f9;
    }

    .email-form {
      width: 95%;
      max-width: 22rem;
      height: 3rem;
      margin-top: 2rem !important;
      border-radius: 8rem;
      display: flex;
      align-items: center;
      background-color: #fff;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border:1px solid var(--btn-bg-dark);
    }

    .email-form-borderless {
      width: 95%;
      max-width: 22rem;
      height: 3rem;
      margin-top: 4.2rem !important;
      display: flex;
      align-items: center;
      background-color: #fff;
      padding: 20px;
    }

    .email-form input[type="email"] {
      width: 100%;
      margin-left: -10px;
      padding: 10px;
      outline: none;
      border: none;
      height: 35px;
      font-size: 16px;
      margin-right: 10px;
      flex: 1;
    }

    .email-form button {
      margin-right: -12px;
      padding: 8px 10px;
      border: 0 solid black;
      background-color: var(--btn-bg-dark);
      color: #fff;
      font-size: 12px;
      font-weight: normal;
      border-radius: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .validate-button {
      width : 100%;
      padding: 8px 10px;
      border: 0 solid black;
      background-color: var(--btn-bg-dark);
      color: #fff;
      font-size: 0.8rem;
      font-weight: normal;
      border-radius: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .email-form-borderless button {
      margin-right: -12px;
      padding: 8px 10px;
      border: 0 solid black;
      background-color: var(--btn-bg-dark);
      color: #fff;
      font-size: 12px;
      font-weight: normal;
      border-radius: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .btn_demo{
        background-color: var(--btn-bg-dark);
        color: #fff;
        padding: 8px 15px;
        border: 0 solid black;
        border-radius: 8rem;
        height:3rem;
      }

    .btn_outline{
        background-color: transparent;
        color: var(--text-black-custom);
        padding: 8px 15px;
        border: 1px solid var(--text-black-custom);
        border-radius: 8rem;
        height:3rem;
      }

.btn_outline:hover,.btn-outline-dark:hover, .btn-custom:hover{
    border: 1px solid #f47e18;
    background-color:transparent;
    color:var(--text-black-custom);
}
.btn-outline-dark:hover{
    border: 1px solid #f47e18;
}
.email-form button:hover {
    background-color: #f47e18;
   }

    @media (max-width: 480px) {
        .email-form{
            margin: auto 0;
            }
    }
    @media (max-width: 360px) {
        .email-form{
            width: 100% !important;
            }
    }

    .vrPopup{
        border: 1px solid #1f37494f  !important;
        color: var(--text-black-custom);
        }
    .nav-item {
      padding: 0.5rem 0;
    }

    .dropdown-hover {
    position: relative;
}

    @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
    left:0
    }
    }
    .text-l{
    color: #23201e;
    font-size: calc(100% + 0.2vw);
    font-weight: 400;
    line-height: 1.4;
    margin-top: .25rem;
    }
    .text-s{
    color: #23201e;
    font-size: calc(70% + 0.2vw);
    font-weight: 400;
    line-height: 1.5;
    }
    .list-group-flush{
    padding:.625rem 1.25rem .625rem 1.1rem;
    border-radius: .625rem;
    }
    .list-group-flush:hover{
    background-color: #f8f7f6;
    }
    .menu__signup{
padding:1.35rem  1.15rem !important;
}
    .lang_selector{
        margin-bottom: 0;
    font-size: .78125rem;
    line-height: 1;
    width:max-content;
    padding:0;
    margin:0;

    }

    .navbar-toggler{
    border: none;
    color: #23201e;
}
    .navbar-toggler:focus{
    box-shadow:none;
    color:#23201ec4;
    }

    select:focus-visible{
    border: none;
    outline:none;
    }
    .bg-grey{
    background-color: #f5f5f5;
    }
    a{
        text-decoration: none !important;
    }
    .copyright-hr{
        height:2px;
        border-width:0;
        color:black;
        background-color:black;
   }
   .jewellery-title{
        color: var(--text-black-custom);
        font-size:calc(100% + 0.2vw);
   }
   .dropdown-menu-content{
       border-top-left-radius: 0;
       border-top-right-radius: 0;
       box-shadow: 0 30px 40px -20px #1024451a;
       border:none;
   }
    .navbar-nav-pl{
    padding-left: 0.15rem;
    }
    .dropdownLanguage-ico{
        opacity: .5;
        flex: none;
        width: .75rem;
        height: .75rem;
        margin-top:1px;"
    }
    .triangle-down {
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid black;
        }
        .triangle-up {
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 5px solid black;
        }

.media_icons a:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.media_icons a:hover img {
    filter: brightness(1.2);
}

.dropdownUser ul{
    position: absolute;
    inset: 0 0 auto auto;
    margin: 0;
    transform: translate3d(0px, 5px, 0px);
}

#internet-speed-indicator{
font-size: 16px;
color: #313131;
margin-left: 10px;
}

#websiteFotterEmail{
    margin-left: -3px !important;
}
