/* [Master Stylesheet] */
/* ----------------------------------------------------------
    :: Template 
    :: Author: Turbo
    :: Author URL:www.boo-code.com 
    :: Version: 1.0
    :: Created: 02 2025
    :: Last Updated: 02 2025
    ---------------------------------------------------------- */
/* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
@font-face {
  font-family: "somar";
  src: url("../fonts/somar-Regular.otf");
}
@font-face {
  font-family: "somar-bold";
  src: url("../fonts/somar-Bold.otf");
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "somar", sans-serif;
  overflow-x: hidden;
  background: #fff;
  accent-color: #3583C5;
}

a {
  text-decoration: unset;
}

/* Responsive */
/* Extra small devices (phones, 600px and down) */
/* galaxy S5 */
/* iphone x, 6/7/8 */
/* iphone 6/7/8 plus */
/* ipad */
/*  large screen  */
/* 17 inch */
/* Interior Design Options Styling */
.option-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.option-card:hover {
  transform: translateY(-2px);
}
.option-card.tw-border-4 {
  border-color: #3583C5 !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.option-checkbox:checked {
  background-color: #3583C5;
  border-color: #3583C5;
}
.option-checkbox:focus {
  box-shadow: 0 0 0 3px rgba(53, 131, 197, 0.1);
}

#continueBtn {
  transition: all 0.3s ease;
}
#continueBtn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=style.css.map */