
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #f4f5fa;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.container {
    max-width: 500px;
    padding: 0 15px;
    margin: 2rem auto;
}

.row {
    margin: 0 -15px;
}

.col {
    padding: 15px;
}

.card {
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 18px 1px rgba(49, 53, 72, 0.1);
    border-radius: 0.25rem;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-danger {
    color: #f00 !important;
}

hr {
    width: 100%;
    clear: both;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    background-image: linear-gradient( to right, transparent, #F48C43, transparent ) !important;
    height: 1px;
    border: 0;
}

input, button, select, optgroup, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.form-group {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.form-group:not(:last-child) {
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: 0.5rem;
}

.form-group select,
.form-group input,
.form-group textarea {
    border: 1px solid #cacfe7;
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-group .btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1rem;
    line-height: 1.25;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: button;
    cursor: pointer;
    background-color: #F48C43;
    color: #fff;
}

.media {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    gap: 20px;
}

.media > div {
    flex: 1;
    position: relative;
}

.media-image {
    flex: 0 0 100px !important;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.media-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.media input {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
}

.media > div > label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.form-group .btn.loading {
    pointer-events:none;
    cursor: no-drop;
}

.mb-10px {
    margin-bottom: 10px !important;
}

.checkbox-wrapper *,
.checkbox-wrapper *::before,
.checkbox-wrapper *::after {
  box-sizing: border-box;
}

.checkbox-wrapper label {
  display: block;
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-wrapper input {
  visibility: hidden;
  display: none;
}

.checkbox-wrapper input:checked ~ .checkbox {
  transform: rotate(45deg);
  width: 10px;
  margin-left: 8px;
  border-color: #F48C43;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 0;
  border-width: 3px;
}

.checkbox-wrapper .checkbox {
  display: block;
  width: inherit;
  height: inherit;
  border: 2px solid #434343;
  border-radius: 6px;
  transition: all 0.375s;
}

.flex-row {
    flex-direction: row;
}

.gap-10px {
    gap: 10px;
}

figure {
    text-align: center;
    width: 300px;
    height: 300px;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    margin: 0 auto;
}

figure img {
    max-width: 300px;
    height: 300px;
    object-fit: contain;
}