/*========================================= PRODUCTS LIST START ===============================*/
.productlist {
    display: flex;
    flex-wrap: wrap;
    gap: 60px; /* Matches spacing in `.i-grid` */
    justify-content: center;
    padding: 0;
    margin: 10px 0;
    list-style-type: none;
    margin-top: 30px;
}

.productlist li {
    flex: 1 1 calc(30% - 20px);
    max-width: 350px;
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #dfe6df;
    text-align: center;
    transition: transform 0.3s ease, outline 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.productlist li:hover {
    transform: scale(1.05);
    outline: 4px solid #1ad4fd;
    background-color: #e0f7ff;
}

.productlist img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, border 0.3s ease;
}

.productlist img:hover {
    transform: scale(1.03);
    /* border: 2px solid #333; */
}

.productlist a {
    text-decoration: none;
    color: inherit;
    display: block; /* Ensures clickable area is full width */
    user-select: none; /* Prevents text selection */
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .productlist {
        gap: 15px; /* Slightly tighter spacing for mobile */
    }
    .productlist li {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
/*========================================= PRODUCTS LIST END ===============================*/


/*========================================= BUTTONS START ===============================*/
.deceti-buttons-scope .deceti-btns{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:.75rem; padding:0; margin:0; list-style:none;
}
.deceti-buttons-scope .deceti-btn{
  --btn-bg:#0b5fff; --btn-border:#0a4bd9; --btn-bg-hover:#2a6dff; --btn-border-hover:#3a7bff; --btn-text:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:.65rem; width:100%;
  padding:1rem 1.35rem; border-radius:9999px;
  background:var(--btn-bg); color:var(--btn-text); border:2px solid var(--btn-border);
  text-decoration:none; font-weight:800; letter-spacing:.02em; font-size:clamp(14px,1.7vw,16px);
  transition:background-color .2s ease, border-color .2s ease, transform .1s ease;
}
.deceti-buttons-scope .deceti-btn:hover{
  background:var(--btn-bg-hover); border-color:var(--btn-border-hover); transform:translateY(-1px);
}
.deceti-buttons-scope .deceti-btn:active{ transform:translateY(0); }
.deceti-buttons-scope .deceti-btn .fa{ font-size:1.15em; line-height:1; }
.deceti-buttons-scope .deceti-btn__label{ white-space:nowrap; }
@media (max-width:480px){ .deceti-buttons-scope .deceti-btn__label{ white-space:normal; text-align:center; } }

/*========================================= BUTTONS END ===============================*/



/*========================================= TOP PAGE DESIGN START ===============================*/

  html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px; /* Base font size for scalability */
  }

  *, *::before, *::after {
    box-sizing: inherit;
  }


.top-message-box {
  background-color: #6be3fd;
  color: #00334d;
  font-size: 32px;
  border-radius: 20px;
  padding: 10px;
  width: 80%;
  margin-top: 45px;
  text-align: center;
  float: left;
}


  .text-block {
   /* opacity: 0;*/
       padding-left: 20px;
       padding-right: 20px;
/*    transform: translateY(20px);
    animation: slideDown 0.3s ease-out forwards;
    animation-delay: 0.1s;*/
  }

  @keyframes slideDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .image-wrapper {
    background-color: #00334d;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .image-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    margin: 0;
  }

  .image-left {
    width: 70%;
    height: auto;
    object-fit: cover;
    z-index: 1;
    display: block;
  }

  .image-right-block {
    width: 35%;
    min-width: 280px;
    max-width: 592px;
    background-color: #1ad4fd;
    border-radius: 0px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    height: auto;
    margin-left: -85px;
  }

  .message-overlay {
    color: #14293c;
    text-align: left;
    width: 100%;
   /* margin-top: -40px;*/
  }

  .message-overlay h1 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    color:#00334d;
  }

  .message-overlay h1 img {
    width: 70px;
    height: 70px;
  }

  .message-overlay p {
    font-size: 18px;
    color: #00334d;
    /*padding-left:35px;*/
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }

  .message-overlay img.icon {
    width: 25px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .magenta-banner {
    width: 100%;
    background-color: #cf0075;
    padding: 10px 0;
    text-align: center;
  }

  .magenta-banner span {
    color: white;
    font-size: 2.2vw;
    font-weight: bold;
    display: inline-block;
  }


@media (max-width: 915px) {
  .image-container {
    flex-direction: column;
  }


.top-message-box {
    font-size: 26px;
    padding: 10px;
    width: 90%;
    margin-left: 40px;
    margin-top: 35px;
 
}

  .message-overlay {
    margin-top: 0px;
  }

  .image-left,
  .image-right-block {
    width: 100%;
    margin-left: 0;
    max-width: none; /* 👈 override the max-width */
  }


  .image-right-block {
    height: 85vh; /* 👈 full screen height */
  }
}



@media (max-width: 500px) {
.top-message-box {
        font-size: 26px;
        padding: 10px;
   	width: 80%;
        margin-left: 40px;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    .image-right-block {
        height: 48vh;
    }

.magenta-banner span
 {

    font-size: 20px;
}

.blue-top-line {
   font-size: 18px;
}
.blue-top-text {
    font-size: 18px;
}


}




@media (max-width: 400px) {

.top-message-box {
        font-size: 26px;
        padding: 10px;
   	width: 80%;
        margin-left: 40px;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    .image-right-block {
        height: 71vh;
    }

.magenta-banner span
 {

    font-size: 20px;
}

.blue-top-line {
   font-size: 18px;
}
.blue-top-text {
    font-size: 14px;
}


}

.centered-text {
  text-align: center;
}

.google-review {
  text-align: center;
  font-family: sans-serif;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  margin-top: 8px;
}

.google-review .rating-score {
  margin-left: 4px;
  font-size: 24px; 
  font-weight: 600;
}

.google-review .stars {
  color: #ffc32b;
  font-size: 30px;
}

.google-review .source {
  margin-left: 6px;
  font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 920px) {
  .google-review .rating-score {
    font-size: 16px;
  }

.google-review {
  margin-top: 0px;
}


  .google-review .stars {
    font-size: 18px;
  }

  .google-review .source {
    font-size: 13px;
  }
}

@media (max-width: 500px) {



  .google-review .rating-score {
    font-size: 8px;
  }
.google-review {
  margin-top: 0px;
}

  .google-review .stars {
    font-size: 8px;
  }

  .google-review .source {
    font-size: 8px;
  }
}
.message-overlay p {
/*  font-size: 18px;*/
}


  .content-block {
    background-color: #ffffff;
    border: 2px solid #003366; /* dark blue */
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 2rem; /* Larger font size */
    width: 100%; /* Full width of parent */
  }

  .content-block h2,
  .content-block h3,
  .content-block h4 {
    color: #003366;
  }

  .cta-btn a {
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
  }

  .btn-outline-primary {
    border-width: 2px;
  }

  .justyardsigns-container {
    max-width: 100%;
    margin: auto;
  }

  /* Layout for small content blocks in the same row */
  .feature-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .feature-box {
    flex: 1;
    border-radius: 8px;
    text-align: center;
    font-size: 24px; /* Increased font size */
  }

  .feature-box h4 {
    font-size: 18px; /* Make h4 big */
    margin-bottom: 1rem;
  }

  .feature-box h2 {
    font-size: 24px; /* Larger h2 */
    margin-bottom: 1.5rem; /* Adjust margin to give space */
  }

  .content-block.text-center h2 {
    font-size: 24px; 
    margin-bottom: 2rem;
    font-weight:600;
  }

  .content-block.text-center p {
    font-size: 16px; 
  }


  .content-block.text-center h3 {
    font-size: 24px; 
    margin-bottom: 1.5rem;
    font-weight:600 !important;
  }

  .content-block.text-center h4 {
    font-size: 24px; /* Adjusted h4 size */
    margin-bottom: 1.5rem;
    font-weight:600 !important;

  }
.mt-3 {
    font-size: 18px !important;
    margin-top: 1rem;
  }


  .content-block {
    background-color: #ffffff;
    border: 2px solid #003366; /* dark blue */
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 2rem; /* Larger font size */
    width: 100%; /* Full width of parent */
  }

  .content-block h2,
  .content-block h3,
  .content-block h4 {
    color: #003366;
  }

  .cta-btn a {
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
  }

  .btn-outline-primary {
    border-width: 2px;
  }

  .justyardsigns-container {
    max-width: 100%;
    margin: auto;
  }

  /* Layout for small content blocks in the same row */
  .feature-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .feature-box {
    flex: 1;
    border-radius: 8px;
    text-align: center;
    font-size: 24px; /* Increased font size */
  }

  .feature-box h4 {
    font-size: 18px; /* Make h4 big */
    margin-bottom: 1rem;
  }

  .feature-box h2 {
    font-size: 24px; /* Larger h2 */
    margin-bottom: 1.5rem; /* Adjust margin to give space */
  }

  .content-block.text-center h2 {
    font-size: 24px; 
    margin-bottom: 2rem;
    font-weight:600;
  }

  .content-block.text-center p {
    font-size: 16px; 
  }


  .content-block.text-center h3 {
    font-size: 24px; 
    margin-bottom: 1.5rem;
    font-weight:600 !important;
  }

  .content-block.text-center h4 {
    font-size: 24px; /* Adjusted h4 size */
    margin-bottom: 1.5rem;
    font-weight:600 !important;

  }
.mt-3 {
    font-size: 18px !important;
    margin-top: 1rem;
  }

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li a {
    color: white;
    text-decoration: none;
}

.custom-list li a:hover {
    color: #1ad4fd;       /* Change text color on hover */
    text-decoration: none;  /* Keep no underline */
}




/*========================================= TOP PAGE DESIGN END ===============================*/
 
.deceti-content-block .row { margin: 20px 0; }
.deceti-block-topblock { margin-top: 0px; }

/*========================================= CALCULATOR START ===============================*/




.svg-button svg path:first-of-type {
  transition: fill 0.3s ease;
  fill: #fccd01; /* original color */
}

.svg-button:hover svg path:first-of-type {
  fill: #ffe600; /* new color on hover */
}
.blue-top-line {
  background-color: #1ad4fd;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  color: #00334d;
  font-weight: bold;
  font-size: 25px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.blue-top-text {
  display: block;
}

.vertical-group {
  float: left;
  width: 50%; 
  box-sizing: border-box; 
}


.vertical-group > div {
  clear: both;
}
.blocksize {
  margin-bottom: 10px;
}



@media screen and (max-width: 768px) {
  .vertical-group {
    float: none;
    width: 100%; 
  }
  

  .vertical-group > div {
    display: block; 
  }
  
  .blocksize {
    width: 100%; 
  }
}
.btn-custom-color-startdesign {
    background: #00334d !important;
}

.btn-custom-color-startdesign:hover {
    background: #00c5f0 !important;
}


.btn-custom-color-designonline {
    background: #00334d !important;
}

.btn-custom-color-designonline:hover {
    background: #00c5f0 !important;
}





.btn-custom-color-uploadartwork {

    background: #d0117b !important;
}

.btn-custom-color-uploadartwork:hover {
    background: #fd1f9a !important;
}


.btn-custom-color-templates {
    background: #2f8000 !important;
}

.btn-custom-color-templates:hover {
    background: #45c603 !important;
}

@media (max-width: 800px) {
.calc {
    width:100% !important;
}
}


.custom-contact-message {
  float: left;
  width: 100%;
  padding-left: 1px;
  padding-right: 1px;
  text-align: center;
  height: 20px;
}

.custom-contact-message-text {
  padding-top: 20px;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .custom-contact-message {
    height: 100px;
  }
}



/* Force checkbox + label to align properly */
.form-check {
    display: flex;
    align-items: center;
}

/* Big checkbox + remove Bootstrap's default top margin */
.form-check-input.checkbox-lg {
    width: 1.3rem;
    height: 1.3rem;
    margin-top: 0 !important;  /* removes Bootstrap default 0.25rem */
}

/* Big text label (24px) aligned with checkbox */
.form-check-label.label-lg {
    font-size: 16px !important;
    line-height: 1.2;
    margin-left: 0.5rem;
    margin-bottom: 0;
}


.calculator {
border: 1px solid #00334d;
border-radius: 15px;
background-color: #ebebeb;
background-position: top center;
background-repeat: no-repeat;
background-attachment: scroll;
font-size:18px;
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For IE/Edge */

}

.calculator  .col-md-6 {
    width: 50%;
    padding-left:10px;
    padding-right:10px;
}



@media (max-width: 960px) {
.calculator {
border-radius: 15px;
background-color: #ebebeb;
background-position: top center;
background-repeat: no-repeat;
background-attachment: scroll;
font-size:15px;
}

.calculator  .col-md-6 {
    width: 100%;
    padding-left:0px;
    padding-right:0px;
    margin-top:10px;
}

.calculator  .col-md-6 .col-md-4 {
    width: 50%;
  float:left;
}

.calculator .col-md-6 .col-md-4.blocksize {
  width: 50% !important;
  float:left;
}            

.calculator .col-md-6 .col-md-2.blocksize {
  width: 50% !important;
  float:left;
}            
.calculator .col-md-6 .col-md-3.blocksize {
  width: 50% !important;
  float:left;
}            
.calculator .col-md-6 .col-md-5.blocksize {
  width: 50% !important;
  float:left;
}            


.calculator .row .col-md-4.blockbutton {
  width: 100% !important;
}            




}

.button, .btn {
    color: #fff !important;
    border-radius:20px;
}
.col-md-6 {
float:left !important;
}

/* Bigger, rounded selects only inside .calculator */
.calculator select {
  display: block;
  width: 100%;
  /* roomy padding with space for the custom arrow */
  padding: 0.75rem 2.75rem 0.75rem 1rem;
  font-size: 18px;
  line-height: 1.4;

  border: 2px solid #cbd5e1;        /* slate-300 */
  border-radius: 9999px;             /* pill shape */
  background-color: #fff;
  color: #0f172a;                    /* slate-900 */

  /* remove native arrows & style consistently */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom arrow */
  background-image:
    url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 12px;

  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.calculator select:hover {
  border-color: #94a3b8;             /* slate-400 */
}

.calculator select:focus {
  outline: 0;
  border-color: #60a5fa;             /* blue-400 */
  box-shadow: 0 0 0 3px rgba(59,130,246,.25);
}

.calculator select:disabled {
  background-color: #f1f5f9;         /* slate-100 */
  color: #94a3b8;                    /* slate-400 */
  cursor: not-allowed;
}

/* Extra large variant (optional) */
.calculator .select-lg {
  font-size: 18px;
  padding: .75rem 2rem .75rem .875rem;
  border-radius: 9999px;
}

.product-options
.select-lg {
  font-size: 18px;
  padding: .75rem 2rem .75rem .875rem;
  border-radius: 9999px;
}


/* Hide IE/old Edge dropdown arrow */
.calculator select::-ms-expand { display: none; }


/*========================================= CALCULATOR END ===============================*/



/*========================================= DECETI BLOCKS  ===============================*/



.title {
    padding-top:45px;
    color: #0f067e;
    font-weight:800;
} 

.phone {
    color: #ec0909;
    font-weight:800;
} 

/*.blueshadow {
    padding-top:25px;
    color: #ffffff;
    text-shadow: -1px -1px 0px #0f067e,0px 0px 2px #0f067e,1px 1px 1px #0f067e,2px 2px 1px #0f067e,3px 3px 0px #0f067e;
} */

/*.redshadow {
    color: #ffffff;
    text-shadow: -1px -1px 0px #ec0909,0px 0px 2px #ec0909,1px 1px 1px #ec0909,2px 2px 1px #ec0909,3px 3px 0px #ec0909;
} */

/* start design block*/
.product-image {    border-radius: 10px ;padding:20px 20px 10px; background-color:#f8f9fa; border:1px solid #00334d; width:55%; position: relative;float:left; text-align:center;}

                                                                                                        

.product-proof {  font-size:20px;border-radius: 10px ;padding:20px 20px 10px; background-color:#f8f9fa; border:1px solid #00334d; width:55%; position: relative;float:left;}
.product-cart {  font-size:20px;border-radius: 10px ;padding:20px 20px 10px; background-color:#f8f9fa; border:1px solid #00334d; width:55%;  position: relative;float:left;}
.product-decal {  font-size:20px;border-radius: 10px ;padding:20px 20px 10px; background-color:#f8f9fa; border:1px solid #00334d; width:55%; min-height:100%;position: relative;float:left;}

.product-calc {  font-size:20px;border-radius: 10px ;padding:20px 20px 10px; background-color:#f8f9fa; border:1px solid #00334d;  position: relative;float:left;width:100%;}


#product_desc{padding-top:30px;}

.product-image-span { padding:25px 15px 0px;}

.product-options-cart { font-size:22px; border-radius: 10px ;padding:20px 20px 0px;   background-color:#f8f9fa; border:1px solid #00334d; width:42%;height:auto; float: right; position: relative; }
.product-options-cart dt { padding:0px 0 0; font-weight:normal; font-size:20px;}
.product-options-cart dt label { font-weight:bold;width:100%; }
.product-options-cart dt span.required { color:#eb340a; }
.product-options-cart dt .qty-holder { float:right; margin-right:15px; }
.product-options-cart dt .qty-holder label { vertical-align:middle; }
.product-options-cart dt .qty-disabled { background:none; border:0; padding:3px; color:#444; }
.product-options-cart dd { margin:0 0 0px;  font-size:20px;}
.product-options-cart dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
.product-options-cart dd input.input-text { width:98%; font-size:20px; }
.product-options-cart dd input.datetime-picker { width:150px; }
.product-options-cart dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
.product-options-cart dd textarea { width:98%; height:8em; }
.product-options-cart dd select { width:99%; font-size:20px;color:#222222;}
.product-options-cart dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
.product-options-cart ul.options-list { margin-right:5px; }
.product-options-cart ul.options-list li { padding:2px 0; }
.product-options-cart ul.options-list input.radio { float:left; margin-top:3px; }
.product-options-cart ul.options-list input.checkbox { float:left; margin-top:2px; }
.product-options-cart ul.options-list .label { display:block; margin-left:18px; }
.product-options-cart ul.options-list label { font-weight:normal; }
.product-options-cart ul.validation-failed { padding:0 7px; }
.product-options-cart p.required { margin-bottom:0; padding:15px 0 0; }





.product-options-calc { font-size:20px; border-radius: 10px ;padding:20px 20px 0px;   background-color:#f8f9fa; border:1px solid #00334d; width:92%;height:auto; float: right; position: relative;}
.product-options-calc dt { padding:0px 0 0; font-weight:normal; font-size:20px;}
.product-options-calc dt label { font-weight:bold;width:100%;font-size:18px; }
.product-options-calc dt span.required { color:#eb340a; }
.product-options-calc dt .qty-holder { float:right; margin-right:15px; }
.product-options-calc dt .qty-holder label { vertical-align:middle; }
.product-options-calc dt .qty-disabled { background:none; border:0; padding:3px; color:#444; }
.product-options-calc dd { margin:0 0 0px;  font-size:20px;}
.product-options-calc dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
.product-options-calc dd input.input-text { width:98%; font-size:20px; }
.product-options-calc dd input.datetime-picker { width:150px; }
.product-options-calc dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
.product-options-calc dd textarea { width:98%; height:8em; }
.product-options-calc dd select { width:99%; font-size:20px;color:#222222;}
.product-options-calc dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
.product-options-calc ul { text-align:left;font-size:16px; }

.product-options-calc ul.options-list { margin-right:5px; }
.product-options-calc ul.options-list li { padding:2px 0; }
.product-options-calc ul.options-list input.radio { float:left; margin-top:3px; }
.product-options-calc ul.options-list input.checkbox { float:left; margin-top:2px; }
.product-options-calc ul.options-list .label { display:block; margin-left:18px; }
.product-options-calc ul.options-list label { font-weight:normal; }
.product-options-calc ul.validation-failed { padding:0 7px; }
.product-options-calc p.required { margin-bottom:0; padding:15px 0 0; }

/* Force all dt labels in the calculator to left-align */
#product-options-calc dl dt,
#product-options-calc dl dt label {
  text-align: left !important;
}

/* If any dt is being centered by flex, force left alignment */
#product-options-calc dl dt {
  justify-content: flex-start !important;
  align-items: flex-start;
}

                
.product-options { font-size:20px;border-radius: 10px ;margin-left:3%;padding:20px 20px 0px;   background-color:#f8f9fa; border:1px solid #00334d; width:42%; float: left; position: relative;}
.product-options dt { padding:0px 0 0; font-weight:normal; }
.product-options dt label { font-weight:bold;width:100%; }
.product-options dt span.required { color:#eb340a; }
.product-options dt .qty-holder { float:right; margin-right:15px; }
.product-options dt .qty-holder label { vertical-align:middle; }
.product-options dt .qty-disabled { background:none; border:0; padding:3px; color:#444; }
.product-options dd { padding:0px 0px 0px; margin:0 0 5px; }
.product-options dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0;  }
.product-options dd input.input-text { width:98%; font-size:20px;}
.product-options dd input.datetime-picker { width:150px; }
.product-options dd .time-picker { display:-moz-inline-box; display:inline-block;2 padding:2px 0; vertical-align:middle; }
.product-options dd textarea { width:98%; height:8em; font-size:20px;}
.product-options dd select { width:99%; font-size:20px;color:#222222;}
.product-options dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
.product-options ul.options-list { margin-right:5px; }
.product-options ul.options-list li { padding:2px 0; }
.product-options ul.options-list input.radio { float:left; margin-top:3px; }
.product-options ul.options-list input.checkbox { float:left; margin-top:2px; }
.product-options ul.options-list .label { display:block; margin-left:18px; }
.product-options ul.options-list label { font-weight:normal; }
.product-options ul.validation-failed { padding:0 7px; }
.product-options p.required { margin-bottom:0; padding:15px 0 0; }


.product-options-shipping-product { font-size:20px;border-radius: 10px ;margin-left:3%;padding:20px 20px 0px;   background-color:#ffffff; border:1px solid #2a3b44; width:42%; float: left; position: relative;}
.product-options-shipping-product dt { padding:10px 0 0; font-weight:normal; }
.product-options-shipping-product dt label { font-weight:bold;width:100%; }
.product-options-shipping-product dt span.required { color:#eb340a; }
.product-options-shipping-product dt .qty-holder { float:right; margin-right:15px; }
.product-options-shipping-product dt .qty-holder label { vertical-align:middle; }
.product-options-shipping-product dt .qty-disabled { background:none; border:0; padding:3px; color:#444; }
.product-options-shipping-product dd { padding:0px 0px 0px; margin:0 0 5px;  }
.product-options-shipping-product dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
.product-options-shipping-product dd input.input-text { width:98%; font-size:20px;}      
.product-options-shipping-product dd input.datetime-picker { width:150px; }
.product-options-shipping-product dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
.product-options-shipping-product dd textarea { width:98%; height:8em; font-size:20px;}
.product-options-shipping-product dd select { width:99%; font-size:20px;color:#222222;}
.product-options-shipping-product dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
.product-options-shipping-product ul.options-list { margin-right:5px; }
.product-options-shipping-product ul.options-list li { padding:2px 0; }
.product-options-shipping-product ul.options-list input.radio { float:left; margin-top:3px; }
.product-options-shipping-product ul.options-list input.checkbox { float:left; margin-top:2px; }
.product-options-shipping-product ul.options-list .label { display:block; margin-left:18px; }
.product-options-shipping-product ul.options-list label { font-weight:normal; }
.product-options-shipping-product ul.validation-failed { padding:0 7px; }
.product-options-shipping-product p.required { margin-bottom:0; padding:15px 0 0; }


.product-options-shipping { font-size:20px;border-radius: 10px ;margin-left:3%;padding:20px 20px 0px;   background-color:#ffffff; border:1px solid #2a3b44; width:42%; float: left; position: relative;}
.product-options-shipping dt { padding:10px 0 0; font-weight:normal; }
.product-options-shipping dt label { font-weight:bold;width:100%; }
.product-options-shipping dt span.required { color:#eb340a; }
.product-options-shipping dt .qty-holder { float:right; margin-right:15px; }
.product-options-shipping dt .qty-holder label { vertical-align:middle; }
.product-options-shipping dt .qty-disabled { background:none; border:0; padding:3px; color:#444; }
.product-options-shipping dd { padding:0px 0px 0px; margin:0 0 5px;  }
.product-options-shipping dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
.product-options-shipping dd input.input-text { width:98%; font-size:20px;}
.product-options-shipping dd input.datetime-picker { width:150px; }
.product-options-shipping dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
.product-options-shipping dd textarea { width:98%; height:8em; font-size:20px;}
.product-options-shipping dd select { width:99%; font-size:20px;color:#222222;}
.product-options-shipping dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
.product-options-shipping ul.options-list { margin-right:5px; }
.product-options-shipping ul.options-list li { padding:2px 0; }
.product-options-shipping ul.options-list input.radio { float:left; margin-top:3px; }
.product-options-shipping ul.options-list input.checkbox { float:left; margin-top:2px; }
.product-options-shipping ul.options-list .label { display:block; margin-left:18px; }
.product-options-shipping ul.options-list label { font-weight:normal; }
.product-options-shipping ul.validation-failed { padding:0 7px; }
.product-options-shipping p.required { margin-bottom:0; padding:15px 0 0; }

.product-options-shipping-padding  { padding-bottom:550px;}



.product-calculator { font-size:20px;border-radius: 10px ;margin-left:3%;padding:20px 20px 0px;   background-color:#f8f9fa; border:1px solid #00334d; width:;90%;float: center; position: relative;}
.product-calculator dt { padding:10px 0 0; font-weight:normal; }
.product-calculator dt label { font-weight:bold;width:100%; }
.product-calculator dt span.required { color:#eb340a; }
.product-calculator dt .qty-holder { float:right; margin-right:15px; }
.product-calculator dt .qty-holder label { vertical-align:middle; }
.product-calculator dt .qty-disabled { background:none; border:0; padding:3px; color:#444; }
.product-calculator dd { padding:0px 0px 0px; margin:0 0 5px;  }
.product-calculator dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
.product-calculator dd input.input-text { width:98%; font-size:20px;}
.product-calculator dd input.datetime-picker { width:150px; }
.product-calculator dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
.product-calculator dd textarea { width:98%; height:8em; font-size:20px;}
.product-calculator dd select { width:99%; font-size:20px;color:#222222;}
.product-calculator dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
.product-calculator ul.options-list { margin-right:5px; }
.product-calculator ul.options-list li { padding:2px 0; }
.product-calculator ul.options-list input.radio { float:left; margin-top:3px; }
.product-calculator ul.options-list input.checkbox { float:left; margin-top:2px; }
.product-calculator ul.options-list .label { display:block; margin-left:18px; }
.product-calculator ul.options-list label { font-weight:normal; }
.product-calculator ul.validation-failed { padding:0 7px; }
.product-calculator p.required { margin-bottom:0; padding:15px 0 0; }

@media screen and (max-width: 1024px) {
   .product-options-shipping-product {
        width: 100%;
    }
   .product-options-shipping-product {
        width: 42%;
    }

   .product-options-shipping {
        width: 42%;
    }


    .product-options {
        width: 42%;
    }
    .product-image {
        width: 55%;
    }
}
@media screen and (max-width: 736px) {



   .product-options-shipping-product {
        width: 100%;
    }

   .product-options-shipping {
        width: 100%;
	margin-top:30px;
    }

   .product-calculator {
        width: 100%;
    }

    .product-image {
        width: 100%;
    }
    .product-options {
        margin-left: 0px;
        margin-top: 20px;
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
   .product-options-shipping-padding  
    { 
     padding-bottom:550px;
    }

    .product-options-cart {
        width: 42%;
    }



    .product-cart {
        width: 50%;
    }
}
@media screen and (max-width: 736px) {
   .product-options-shipping-padding  
    { 
     padding-bottom:850px;
    }

   .product-options-shipping-product {
        width: 100%;
    }

   .product-options-shipping {
        width: 100%;
	margin-top:30px;
    }

   .product-calculator {
        width: 100%;
    }

    .product-cart {
        width: 100%;
    }
    .product-options-cart {
        margin-left: 0px;
        margin-top: 20px;
        width: 100%;
    }

}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .product-image {
        width: 100%;
    }
   .product-options-shipping-padding  
    { 
     padding-bottom:850px;
    }

   .product-options-shipping-product {
        width: 100%;
        
    }

   .product-options-shipping {
        width: 100%;
	margin-top:30px;
    }

   .product-calculator {
        width: 100%;
    }

    .product-options {
        margin-left: 0px;
        margin-top: 20px;
        width: 100%;
    }
}


/* testimonials*/
/*-------------------------------*/
/*      Code snippet by          */
/*      @maridlcrmn              */
/*-------------------------------*/


section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.quote {
    text-align: center;
    margin-bottom: 30px;
}

/*-------------------------------*/
/*    Carousel Fade Transition   */
/*-------------------------------*/

#fade-quote-carousel.carousel {
  padding-bottom: 60px;
}
#fade-quote-carousel.carousel .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-inner .active {
  opacity: 1;
  -webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-indicators {
  bottom: 10px;
}
#fade-quote-carousel.carousel .carousel-indicators > li {
  background-color: #e84a64;
  border: none;
}
#fade-quote-carousel blockquote {
    text-align: center;
    border: none;
}
#fade-quote-carousel .profile-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 100px;
}

.rightmenu {
  min-height: 440px;
  padding: 0px;
  margin-bottom: 20px;
  background-color: #f0f0f0;
  border: 1px solid #a0a0a0;
  border-radius: 1px;
  @include box-shadow(inset 10px 10px 60px rgba($gray-darker, 0.11), inset -25px -10px 65px rgba($gray-darker, 0.145));
  blockquote {
    border-color: #ddd;
    border-color: rgba(0,0,0,.15);
  }
    p:first-child {
        margin-top: 0px;
    }
    h2 {
        color: #f0f0f0;
        font-size: 14px;
        margin: 4px 0px;
        font-weight: 700;
        text-transform: uppercase;
    }
  a {
      color: $brand-third;
      font-weight: 700;
  }
  img {
      border-radius: 1px, 1px, 0, 0;
      border-bottom: 1px solid 1px;
  }
}

// Sizes
.rightmenu-lg {
  padding: 24px;
  border-radius: $border-radius-large;
}
.rightmenu-sm {
  padding: 6px;
  border-radius: $border-radius-small;
}

//Colors
.rightmenu-primary {
    @include box-shadow(none);
    background-color: $brand-primary;
    padding-top: 0px;
    color: #f2f2f2;
    h1, h2, h3, h4, h5, h6 {
        color: $gray-lighterer;

    }
    ol {
        padding-left: 20px;
        line-height: 1.4;
        li {
            margin-bottom: (0.375);
        }
    }
}


.message-alert {
    font-weight: 500;
    font-size: 100%;
    color: rgb(255, 255, 255);
    top: -12px;
    min-width: 30px;
    max-width: 100%px;
    background: rgb(255, 66, 66);
    border-radius: 4px;
    padding: 5px 10px;
    text-align: center;
    display:none;
    margin-bottom:15px;
}



.calculator {
border: 1px solid #00334d;
border-radius: 15px;
background-color: #ebebeb;
background-position: top center;
background-repeat: no-repeat;
background-attachment: scroll;
font-size:18px;
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For IE/Edge */

}

.calculator  .col-md-6 {
    width: 50%;
    padding-left:10px;
    padding-right:10px;
}



@media (max-width: 960px) {
.calculator {
border-radius: 15px;
background-color: #ebebeb;
background-position: top center;
background-repeat: no-repeat;
background-attachment: scroll;
font-size:15px;
}

.calculator  .col-md-6 {
    width: 100%;
    padding-left:0px;
    padding-right:0px;
    margin-top:10px;
}

.calculator  .col-md-6 .col-md-4 {
    width: 50%;
  float:left;
}

.calculator .col-md-6 .col-md-4.blocksize {
  width: 50% !important;
  float:left;
}            

.calculator .col-md-6 .col-md-2.blocksize {
  width: 50% !important;
  float:left;
}            
.calculator .col-md-6 .col-md-3.blocksize {
  width: 50% !important;
  float:left;
}            
.calculator .col-md-6 .col-md-5.blocksize {
  width: 50% !important;
  float:left;
}            


.calculator .row .col-md-4.blockbutton {
  width: 100% !important;
}            




}



/*========================================= DECETI TEMPLATES ===============================*/


/* =============== DECETI Templates =============== */

/* Search bar */
.deceti-templates-search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.deceti-templates-search-input {
  flex: 1 1 auto;
  min-width: 260px;
  max-width: 900px;
  padding: 10px 12px;
  font-size: 18px;
  border: 2px solid #ddd;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
}

.deceti-templates-search-input:focus {
  border-color: #1ad4fd;
}

.deceti-templates-search-btn,
.deceti-templates-clear-btn {
  background: #00334d;
  color: #fff;
  font-size: 18px;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}

.deceti-templates-search-btn:hover,
.deceti-templates-clear-btn:hover {
  background: #1ad4fd;
}

/* Optional message box (search status / nothing found) */
.deceti-templates-msg {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid #dfe6df;
  border-radius: 8px;
  background: #f8f8f8;
  box-sizing: border-box;
}

/* Product grid list */
.deceti-productlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 15px 0;
  list-style: none;
}

.deceti-productlist-item {
  flex: 0 1 270px;
  max-width: 290px;
  background: #f8f8f8;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #dfe6df;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.25s ease, outline 0.25s ease, background-color 0.25s ease;
}

.deceti-productlist-item:hover {
  transform: scale(1.03);
  outline: 4px solid #1ad4fd;
  background-color: #e0f7ff;
}

.deceti-productlist-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.deceti-productlist-title {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 600;
}

.deceti-productlist-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Buttons under templates */
.deceti-productlist-actions {
  margin-top: 10px;
}

/* Pagination */
.deceti-templates-pages {
  margin-top: 15px;
  text-align: center;
}

.deceti-templates-pages .btn {
  margin: 0 4px 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .deceti-productlist {
    gap: 15px;
  }

  .deceti-productlist-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .deceti-templates-search {
    margin: 15px 0;
  }

  .deceti-templates-search-input {
    min-width: 0;
    max-width: 100%;
  }
}



/*========================================= DECETI CART ADMIN BLOCK ===============================*/


/*========================================= DECETI COLORS BLOCK ===============================*/

.item-Show-colors .item-Swatch-small {
  height: 28px;
  width: 28px;
  margin-top: 2px;
  margin-right: 4px;
  margin-bottom: 4px;
  cursor: pointer;
  display:inline-block; 
}

.item-Swatch-small {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  box-sizing: border-box;
}



.item-Swatch-trim-small {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 33%;
}

 .item-Swatch-small:hover {
  border-color: #5e9eff;
  border-width: 4px;
} 







.item-Show-colors .item-Swatch {
  height: 32px;
  width: 32px;
  margin-top: 2px;
  margin-right: 4px;
  margin-bottom: 4px;
  cursor: pointer;
  display:inline-block; 
}

.item-Swatch {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  box-sizing: border-box;
}

.item-Swatch-trim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 33%;
}

 .item-Swatch:hover {
  border-color: #5e9eff;
  border-width: 4px;
} 
.itemActive {
  border-color: #5e9eff;
  border-width: 4px; 
}



.color-pallete .item-color {
  display:block
  float: left;
  height: 55px;
  width: 55px;
  margin-top: 2px;
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 10px;

}

.item-color {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  border-width: 1px;
  border-style: solid;
 border-color: #000000;
  border-radius: 6px;
  box-sizing: border-box;
}

.item-color-trim {
  display:block
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 33%;
}

.item-color:hover {
  display:block
  border-color: #000000;
  border-width: 1px;
} 

.item-name {
  display:block;
  font-weight:bold;
  margin-bottom: 1px;;
} 


.item-pms {
  display:block
  margin-bottom: 0px;;
  font-size:11px;
} 



.color-block
{
    width:120px;
    margin-top:15px;
    position: relative;
    display: inline-block;
}

#content, #column-left, #column-right {
  padding-bottom: 0px !important;
}
@media (min-width: 576px) {
  #content, #column-left, #column-right {
    padding-bottom: 0px !important;
  }
}

.deceti-content-block  {
    margin-bottom:20px !important;
}

.calculator  {
    margin-bottom:20px !important;
}

.deceti-block-templates  {
    margin-bottom:20px !important;
}




.deceti-content-block ul li {
    font-size: 20px !important;
    line-height: 1.5;
}

.deceti-content-block p {
  font-size: 20px !important;
    line-height: 1.5;
}

.image-right-block p.text-block {
  font-size: 17px !important;
  line-height: 1.1;
}


.deceti-content-block .content-block p {
  font-size: 20px !important;
  line-height: 1.6;
  margin-bottom: 12px; /* optional, for nicer spacing */
}

.deceti-content-block h1,
.deceti-content-block h2,
.deceti-content-block h3,
.deceti-content-block h4,
.deceti-content-block h5,
.deceti-content-block h6 {
    color: #000000;
}


h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
}

.deceti-finishing {
margin-top:20px;
}


.breadcrumb {
    margin-top: 20px !important;
    padding-left: 20px !important;
}



.form-control-sm {
    font-size: 1.1109375rem !important;

}


@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
      max-width: 1360px !important;
    }
}