@charset "utf-8";
/* CSS Document */
/** Base form structure **/
.form_placeholder {padding-bottom: 30px;}
.form_placeholder fieldset {
    border: none !important;
    padding: 0!important;
    margin: 0 !important;
}

.form_placeholder .mb-3 {
  display: flex;
  padding: 5px 0px;
  align-items: center;
  gap: 10px;
}

.form_placeholder .form-label {
  flex: 0 0 150px;
  text-align: left;
  margin: 0;
  font-weight: 600;
  color: #21394b;
}

.darkcolorbg .form_placeholder .form-label {
  color: #ffffff;
}

/** Required asterisk **/
.form_placeholder .text-muted { display: none !important; }
.form_placeholder .text-muted::before {
    content: '*';
    color: #dda53c;
    font-size: 1.1rem;
    font-weight: bold;
}

/** Inputs **/
.form_placeholder .form-control, .form_placeholder .form-select, .form_placeholder textarea {
  flex: 1;
  min-width: 0;
}

.form_placeholder .form-control {
    width: 100%;
    min-height: 2.2rem;
    padding: 8px 15px;
    border: solid 1px #cccccc;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    color: #21394b;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing:border-box;
}

.form_placeholder .form-control:focus {
    outline: none;
    border-color: #dda53c;
    box-shadow: 0 0 4px rgba(221,165,60,0.5);
}

.form_placeholder .form-control::placeholder {
    color: #888888;
    font-size: 0.95em;
}

/** Textarea **/
.form_placeholder textarea {
    resize: vertical;
}

/** Select dropdown **/
.form_placeholder .form-select {
    min-width: 100%;
    min-height: 2.2rem;
    padding: 8px 15px;
    border: 1px solid #cccccc;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    color: #21394b;
    background-color: #ffffff;
    border-radius: 4px;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="%2321394b" height="24" viewBox="0 0 24 24" width="24"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    cursor: pointer;
    box-sizing:border-box;
}
.form_placeholder .form-select:focus {
    outline: none;
    border-color: #dda53c;
    box-shadow: 0 0 4px rgba(221,165,60,0.5);
}

/** Checkbox layout **/
.form_placeholder .form-check {
    width: 48%;
    margin: 6px 1%;
    display: inline-block;
    vertical-align: top;
}
.form_placeholder .form-check-label {
    font-size: 0.95em;
    color: #21394b;
}

/* Address Layout */
.form_placeholder .ccm-attribute-address-composer-wrapper {
  width: 100% !important;
  max-width: none !important;
  padding: 0px 0px 0px 50px;
  display: block;
  box-sizing: border-box;
}

.form_placeholder .ccm-attribute-address-composer-wrapper .ccm-attribute-address-line {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.form_placeholder .ccm-attribute-address-composer-wrapper .ccm-attribute-address-line .form-label {
  flex: 0 0 160px;
  margin: 0;
  text-align: left;
  color: #21394b;
  font-weight: 600;
}

.form_placeholder .ccm-attribute-address-composer-wrapper .ccm-attribute-address-line .form-control,
.form_placeholder .ccm-attribute-address-composer-wrapper .ccm-attribute-address-line .form-select {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.form_placeholder .ccm-attribute-address-state-province select.form-control,
.form_placeholder .ccm-attribute-address-state-province input.form-control {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

/** Button Styling **/
.form_placeholder .form-actions {
    margin-top: 2rem;
    text-align: center;
}
.form_placeholder .form-actions button {
    min-height: 2.5rem;
    padding: 8px 30px;
    background: #21394b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.form_placeholder .form-actions button:hover {
    background-color: #dda53c;
    color: #21394b;
    transform: scale(1.03);
}
.darkcolorbg .form_placeholder .form-actions button {
    background: #fff;
    color: #21394b;
}

/** Success Alert **/
.alert-success {
    padding: 12px;
    background-color: #21394b;
    color: #ffffff;
    border-left: 4px solid #dda53c;
    box-sizing: border-box;
}

/** Responsive Tweaks **/
@media only screen and (max-width: 768px) {
    .form_placeholder .form-control,
    .form_placeholder .form-select,
    .form_placeholder textarea {
        min-width: 100%;
    }
    .form_placeholder .form-check {
        width: 100%;
        margin: 6px 0;
    }
}

@media (max-width: 600px) {
  .form_placeholder .ccm-attribute-address-composer-wrapper .ccm-attribute-address-line {
    flex-direction: column;
    align-items: stretch;
  }
  .form_placeholder .ccm-attribute-address-composer-wrapper .ccm-attribute-address-line .form-label {
    flex: none;
    width: 100%;
    margin-bottom: 4px;
  }
}


	
/*label[for="akID[54][atSelectOptionValue]"], label[for="akID[55][atSelectOptionValue]"], label[for="akID[50][atSelectOptionValue]"] {display:block !important;}*/