/* Sartorius Base Global CSS (Generalized) */

/* TT Norms Pro Regular 폰트가 유료 폰트여서 
유사한 무료 구글 폰트 IBM Plex Sans KR로 대체함 */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@100;200;300;400;500;600;700&display=swap');


/* Base Reset & HTML/Body Styles */
@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 10px; /* Base font size for rem units */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    margin: 0;
    font-family: 'IBM Plex Sans KR', sans-serif;
    font-size: 16px; /* Default font size */
    line-height: 1.42857;
    color: #333;
    background-color: #fff;
    max-width:100%;
}
* {
    box-sizing: border-box;
}

/* General Typography */
b, strong {
    font-weight: 700;
    font-family: 'IBM Plex Sans KR', sans-serif;
}
a {
    color: black;
    text-decoration: none;
}
a:focus, a:hover {
    color: #23527c;
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 14px;
}
h6 {
    font-size: 12px;
}
p {
    margin: 0 0 10px;
}


/* Icon styles */
/* Note: sartorius-icon-font @font-face rule removed as it's not a standard text font and its files are not provided. */
[class*=" icon-"]:before, [class^=icon-]:before {
    font-family: sartorius-icon-font;
    font-style: normal;
    font-weight: 400;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Colors */
:root {
    --sartorius-black: #000;
    --sartorius-white: #fff;
    --sartorius-yellow: #ffed00;
    --sartorius-light-gray: #d2d2d2;
    --sartorius-medium-gray: #838383;
    --sartorius-red: #e60046;
    --sartorius-green: #00aa46;
    --sartorius-teal: #00b9be;
    --sartorius-faint-gray: #f5f5f5;
    --sartorius-border-gray: #ddd;
    --sartorius-text-gray: #777;
    --sartorius-light-border: #eee;
}

/* Form Elements */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--sartorius-border-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'IBM Plex Sans KR', sans-serif;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select {
 max-height:41px;
}
textarea {
    height: 100px;
}
input:focus, select:focus, textarea:focus {
    border: 1px solid var(--sartorius-black);
    box-shadow: none;
    outline: none;
}
input[type="checkbox"] {
    height: 18px;
    width: 18px;
    accent-color: #ffd400;
}
.layout .fuelux .popover .popover-content {
    color: #e60800;
    font-size: 14px;
}

/* Buttons */
button, input[type="submit"] {
    background-color: var(--sartorius-black);
    color: var(--sartorius-white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
button:hover, input[type="submit"]:hover {
    background-color: #333;
}

/* Layout & Spacing */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}

/* Basic List Styles */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
li {
    margin-bottom: 5px;
}

/* smart chapcher custoum */
.layout .fuelux input[type=text], .layout .fuelux input[type=number], .layout .fuelux input[type=email] {
  height: auto !important;
}
table.stylingblock-content-wrapper{
    min-width:auto !important;
    max-width: 1200px;
    margin: 0 auto;
}
.smartcapture-submit-button-wrapper .sc-button{
 color: #000000 !important;
 background-color: #FFED00 !important;
 border-color: #FFED00 !important;
 border-radius: 3px !important;
 box-shadow: -2px 5px 6px 0 rgba(0, 0, 0, 0.05) !important;
}
#Privacy_Consent__c + a, 
#Marketing_Consent__c + a {
 text-decoration: underline;
 text-underline-position: under;
}