@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root{
    --heading-font: 'Archivo', sans-serif;
    --body-font: 'open sans', sans-serif;
    --menu-font: 'open sans', sans-serif;
    --white: #FFFFFF;
    --light: #303030;
    --black: #000;
    --heading-color: var(--base-two);
    --body-color: var(--light);
    --border-color: 0 0% 88%;
    --section-bg: 208 100% 97%;
    --header-box-shadow: 0px -1px 15px 3px hsl(#000 /.3);
    --mobile-box-shadow: 0px -1px 5px 0px hsl(#000 /.92);
    --box-shadow: 0px 2px 15px hsl(#000 /.05);
    --base: #5c5c5c;
    --base-two: rgb(32 58 64);
    --dark: #232e35;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: var(--body-font);
    color: var(--body-color);
    background-color: var(--white);
    margin: 0;
    line-height: 1.5;
}
a {
    display: inline-flex;
    transition: .2s linear;
    text-decoration: none;
    color: var(--base);
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-family: var(--heading-font);
    color: hsl(rgb(32 58 64));
    line-height: 1.3;
    font-weight: 700;
}
li{
    list-style-type: none;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 6.6px;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    background: transparent;
    color: #ccc ;
    height: 2px;
}
.form-control {
    border-radius: 5px;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 13px 24px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--black);
    color: var(--black);
    line-height: 1;
    font-family: var(--body-font);
    font-size: 14px;
}
button {
    border: 0;
    background-color: rgba(0, 0, 0, 0);
}
.main-section-title{
    position: relative;
}
.main-section-title:before, .main-section-title:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 1px;
    background: var(--dark);
}
.main-section-title:before {
    left: 0;
}
.main-section-title:after {
    right: 0;
}
.main-section-title {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}
.main-section-title h1 {
    font-family: var(--heading-font);
    color: var(--dark);
    margin: auto;
    text-align: center;
    font-size: 2.25rem;
    line-height: 2.875rem;
    font-weight: 600;
    letter-spacing: .05rem;
    padding: 10px 25px;
    background: #fff;
    display: inline-flex;
    overflow: hidden;
    z-index: 2;
    position: relative;
}
iframe {
    border: none;
}
button:hover{
    cursor: pointer;
}
ul.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    margin: auto;
}

.pagination li.page-item {
    margin: 0 5px;
}

.pagination .page-item .page-link {
    border: 1px solid rgba(0, 0, 0, .251);
    margin: 0 5px;
    border-radius: 99px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 500;
    padding: 4px;
    color: var(--body-color);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.pagination .page-item .page-link:hover {
    background-color: var(--base);
    color: var(--white);
    border-color: var(--base);
}

.pagination .page-item.active .page-link {
    background-color: var(--base);
    color: var(--white);
    border-color: var(--base);
}


.action-skip-wrapper{
    display: none;
}

.toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #BD362F;
    color: white;
    padding:0px;
    border-radius: 3px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
    overflow: hidden;
    width: 300px;
    font-size: 16px;
    border: solid 1px #ccc;
    opacity: 0.8;
    box-shadow: 0 0 12px #999;
}

.toast-success {
  background-color: #51A351
}
.toast-success:hover {
    background-color: #51A351
  }
.toast-message.hover {
    opacity: 1;
}
.toast-message.show {
  opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 12px;
    padding-top: 13px;
    padding-bottom: 1px;
}

.toast-content i,.toast-content img {
  margin-right: 10px;
  font-size: 20px; /* Slightly larger icon */
}

.toast-progress {
    height: 4px;
    background-color:#6f1611;
    width: 100%;
    animation: shrinkWidth 3.5s linear forwards;
    margin-top: 8px;
  }
  
  @keyframes shrinkWidth {
    from {
      width: 100%;
    }
    to {
      width: 0;
    }
  }
  .toast-success .toast-progress{
    background-color: #257125;
  }

.modal.show .modal-dialog {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 1%;
}
.modal-xl.modal.show .modal-dialog {
    max-width: 1140px;
}

.modal{
    background-color: #00000080;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    display: none;
}
.modal.show{
    display: block;
}



.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: solid 1px #dee2e6;
}

.modal-title {
    font-size: 20px;
    margin-bottom: 0;
}

.modal-body {
    padding: 16px;
}

.modal-body .col-12 {
    margin-top: 16px;
}

.modal-body .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.modal-body label.form-label {
    margin-bottom: 8px;
    display: inline-block;
}
.modal-row .image-container {
    width: 58.33333333%;
}

.modal-row .image-container img {
    width: 100%;
}

.modal-row .details-container {
    width: 41.66666667%;
}

.modal-row {
    display: flex;
    gap: 24px;
}

.btn {
    color: var(--white) ;
    font-weight: 500;
    padding: 16px 29px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0);
    font-family: var(--body-font);
    line-height: 1;
    transition: all linear .3s;
}
.btn-submit{
    background-color:  var(--base) ;;
    color: var(--white) ;
}


.overflow-hidden {
    overflow: hidden;
}
.container.listing-main-container .search.results .block {
    display: none;
}
.custom-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
 
.custom-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
    position: relative;
}
 
.custom-icon-container {
    margin-bottom: 20px;
}
 
.custom-success-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}
 
.custom-success-message {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}
 
.custom-close-modal {
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}
 
.btnPrint {
    margin-bottom: 0;
    color: var(--base);
    cursor: pointer;
    margin-right: 15px;
    font-weight: bold;
    font-size: 16px;
}
.modal-body .product-title{
    font-size: 20px;
}
.thumb-next {
    right: 0%;
    background-color: #f1f5f9;
}

.thumb-prev {
    left: 0%;
    background-color: #f1f5f9;
}

.main-prev,
.main-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    margin-top: -22px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 4px;
    user-select: none;
    z-index: 10;
    display: none;

}

.main-next {
    right: 0px;
    border-radius: 4px;
}

.main-prev {
    left: 0px;
    border-radius: 4px;
}

.main-prev:hover,
.main-next:hover {
    background-color: #e2e8f0;
}

.thumbnail-container {
    position: relative;
    width: 100%;
    background-color: white;
    display: flex;
}

.thumb-prev,
.thumb-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-top: -22px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    z-index: 10;
    /* Ensure buttons are above images */
    display: block;
    /* Initially visible */
}

.xzoom-thumbs {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .product-img-show{
    position: relative;
  }
  .product-img-show:hover .main-prev{
    display: block;
  }
  .product-img-show:hover .main-next{
    display: block;
  }